nginx/guacamole.conf
Anthony Wang b5cb9148d0
Config cleanup
- Enable proxy auth for calibre-web
- Remove Cockpit, Forgejo, Synapse configs and make them directly listen on Unix sockets in /srv/http
- Enable access log for Guacamole
- Disable big uploads for JupyterHub
- Increase upload size for all exopages sites
2024-05-22 01:13:37 +00:00

14 lines
396 B
Text

server {
listen 443 ssl;
listen [::]:443 ssl;
server_name desk.exozy.me;
location / {
proxy_pass http://localhost:4080/guacamole/;
proxy_buffering off;
proxy_http_version 1.1;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
}
}