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

16 lines
541 B
Nginx Configuration File
Raw Normal View History

2018-12-28 21:59:37 +01:00
location __PATH__/ {
2018-12-30 16:00:54 +01:00
proxy_pass http://localhost:__PORT__;
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
}