Remove wildcard cert

This commit is contained in:
Emelie Graven 2022-04-12 17:36:08 +02:00
parent 2fc3df27a4
commit 27530f0de0
Signed by: emelie
GPG key ID: C11123726DBB55A1
9 changed files with 10 additions and 27 deletions

View file

@ -2,7 +2,7 @@
imports = [ ../../../common/services/nginx.nix ];
services.nginx.virtualHosts = {
"anarkafem.dev" = {
useACMEHost = "anarkafem.dev";
enableACME = true;
forceSSL = true;
locations."/".root = "/var/www/anarkafem.dev/public";
locations."/_matrix/".proxyPass = "http://127.0.0.1:8008";
@ -21,12 +21,12 @@
};
};
"cal.anarkafem.dev" = {
useACMEHost = "anarkafem.dev";
enableACME = true;
forceSSL = true;
locations."/".proxyPass = "http://127.0.0.1:4000";
};
"auth.anarkafem.dev" = {
useACMEHost = "anarkafem.dev";
enableACME = true;
forceSSL = true;
locations."/".proxyPass = "http://127.0.0.1:9000";
};