1
0
mirror of https://github.com/ellmau/nixos.git synced 2025-12-19 09:29:36 +01:00

Fix typo in virtualhosts

This commit is contained in:
Stefan Ellmauthaler 2024-03-12 13:54:58 +01:00
parent 6c775d5e91
commit 170c4908f7
Failed to extract signature

View File

@ -66,7 +66,7 @@ with lib; {
};
in
mkIf cfg.enable {
services.nginx.virtualHosts.${cfg.domain} = {
services.nginx.virtualHosts."${cfg.domain}" = {
enableACME = true;
forceSSL = true;
};