services/syncserver: Removal

This commit is contained in:
kat witch 2021-04-04 22:19:14 +01:00
parent c761c3f6c6
commit 0f9db3b2be
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
2 changed files with 0 additions and 24 deletions

View file

@ -8,8 +8,6 @@ let
"browser.download.lastDir" = "/home/kat/downloads";
"browser.urlbar.placeholderName" = "DuckDuckGo";
"toolkit.legacyUserProfileCustomizations.stylesheets" = true;
"identity.sync.tokenserver.uri" =
"https://sync.kittywit.ch/token/1.0/sync/1.5";
};
in {
programs.zsh.shellAliases = {

View file

@ -1,22 +0,0 @@
{ config, pkgs, ... }:
{
services.firefox.syncserver = {
enable = true;
listen.port = 5001;
allowNewUsers = false;
publicUrl = "https://sync.kittywit.ch";
};
services.nginx.virtualHosts."sync.kittywit.ch" = {
enableACME = true;
forceSSL = true;
locations = { "/".proxyPass = "http://127.0.0.1:5001"; };
};
deploy.tf.dns.records.kittywitch_sync = {
tld = "kittywit.ch.";
domain = "sync";
cname.target = "athame.kittywit.ch.";
};
}