feat: adds headers so quack might work better; adds nepenthis

This commit is contained in:
Ahwx 2025-03-01 23:16:32 +01:00
parent 9f7542a5ab
commit 840a4679bb

View file

@ -7,6 +7,22 @@
locations."/" = { locations."/" = {
proxyPass = "http://localhost:3000"; proxyPass = "http://localhost:3000";
proxyWebsockets = true; proxyWebsockets = true;
extraConfig = ''
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Proto https;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-Forwarded-Host $remote_addr;
'';
};
locations."/wiki/" = {
# Nepenthis
proxyPass = "http://localhost:8893";
extraConfig = ''
proxy_set_header X-Prefix '/wiki';
proxy_set_header X-Forwarded-For $remote_addr;
proxy_buffering off;
'';
}; };
}; };
}; };