diff --git a/modules/templates/web-feature.nix b/modules/templates/web-feature.nix index 837b1c6..d101877 100644 --- a/modules/templates/web-feature.nix +++ b/modules/templates/web-feature.nix @@ -16,14 +16,12 @@ in }; # reverse proxy - nginx = { - virtualHosts."${feature}.fi33.buzz" = { - forceSSL = true; - useACMEHost = "fi33.buzz"; - locations."/" = { - proxyPass = "http://localhost:${port}"; - # proxyWebsockets = true; - }; + nginx.virtualHosts."${feature}.fi33.buzz" = { + forceSSL = true; + useACMEHost = "fi33.buzz"; + locations."/" = { + proxyPass = "http://localhost:${port}"; + # proxyWebsockets = true; }; }; };