style: remove redundancy in nginx config template

This commit is contained in:
wi11-holdsworth 2025-09-29 22:45:18 +10:00
parent 95f9e00bb1
commit c87148b911

View file

@ -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;
};
};
};