1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/jupyterlab_ynh.git synced 2024-09-03 19:26:35 +02:00
jupyterlab_ynh/conf/nginx.conf

18 lines
597 B
Nginx Configuration File
Raw Normal View History

2022-03-11 00:23:07 +01:00
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
2018-12-28 21:59:37 +01:00
location __PATH__/ {
2023-02-20 19:46:10 +01:00
proxy_pass http://127.0.0.1:__PORT__;
2018-12-30 16:00:54 +01:00
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $server_name;
2018-12-28 21:59:37 +01:00
2018-12-30 16:00:54 +01:00
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
# Include SSOWAT user panel.
2018-12-28 21:59:37 +01:00
include conf.d/yunohost_panel.conf.inc;
2018-12-30 16:00:54 +01:00
more_clear_input_headers 'Accept-Encoding';
2018-12-28 21:59:37 +01:00
}