1
1
mirror of https://github.com/dali99/nixos-matrix-modules.git synced 2025-09-10 04:53:48 +02:00

fix: don't force enableACME to allow useACMEHost

This commit is contained in:
lon
2023-05-27 10:43:48 +02:00
committed by Daniel Løvbrøtte Olsen
parent c158a35ea2
commit bf997073d9

View File

@@ -198,7 +198,7 @@ in
}; };
services.nginx.virtualHosts."${cfg.public_baseurl}" = { services.nginx.virtualHosts."${cfg.public_baseurl}" = {
enableACME = true; enableACME = lib.mkDefault true;
forceSSL = true; forceSSL = true;
locations."/_matrix" = { locations."/_matrix" = {
proxyPass = "http://$synapse_backend"; proxyPass = "http://$synapse_backend";