use nginx

This commit is contained in:
Philip Peterson 2026-06-04 19:37:11 -07:00
parent e3f91306f7
commit 4b88ae2a68

View file

@ -114,6 +114,22 @@
}; };
}; };
"pluto.philippeterson.com" = {
useACMEHost = "pluto.philippeterson.com";
onlySSL = true;
locations."/" = {
proxyPass = "http://127.0.0.1:1234/";
extraConfig = ''
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
proxy_read_timeout 86400;
'';
};
};
"vnc.quinefoundation.com" = { "vnc.quinefoundation.com" = {
enableACME = true; enableACME = true;
forceSSL = true; forceSSL = true;