2021-11-23 02:21:13 +00:00
|
|
|
server {
|
2023-07-06 14:47:37 +00:00
|
|
|
listen 443 ssl;
|
|
|
|
listen [::]:443 ssl;
|
2021-11-23 02:21:13 +00:00
|
|
|
server_name hub.exozy.me;
|
|
|
|
|
2021-11-23 18:18:04 +00:00
|
|
|
location ~ ^/user/(.*)/desk/(.*)$ {
|
|
|
|
return 301 /hub/desk/$2;
|
|
|
|
}
|
|
|
|
|
|
|
|
location /hub/desk/ {
|
2021-12-24 03:07:45 +00:00
|
|
|
proxy_pass http://localhost:4080/guacamole/;
|
2021-11-23 02:21:13 +00:00
|
|
|
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;
|
2021-11-23 18:18:04 +00:00
|
|
|
proxy_cookie_path /guacamole/ /hub/desk/;
|
2021-11-23 02:21:13 +00:00
|
|
|
access_log off;
|
|
|
|
}
|
|
|
|
|
|
|
|
# Managing literal requests to the JupyterHub front end
|
|
|
|
location / {
|
2021-11-25 02:11:03 +00:00
|
|
|
proxy_pass http://localhost:8000;
|
2021-11-23 02:21:13 +00:00
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
|
|
proxy_set_header Host $host;
|
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
|
|
|
|
|
# websocket headers
|
|
|
|
proxy_http_version 1.1;
|
|
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
|
|
proxy_set_header Connection $connection_upgrade;
|
|
|
|
proxy_set_header X-Scheme $scheme;
|
|
|
|
|
|
|
|
proxy_buffering off;
|
2022-05-09 02:33:38 +00:00
|
|
|
|
|
|
|
# Allow big uploads
|
2022-05-21 16:57:02 +00:00
|
|
|
client_max_body_size 1G;
|
2021-11-23 02:21:13 +00:00
|
|
|
}
|
|
|
|
}
|