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

15 lines
421 B
Nginx Configuration File
Raw Normal View History

2018-05-01 12:25:53 +02:00
location ^~ __PATH__/ {
proxy_pass http://127.0.0.1:__PORT__/;
proxy_http_version 1.1;
proxy_set_header Connection "upgrade";
proxy_set_header Upgrade $http_upgrade;
proxy_set_header X-Forwarded-For $remote_addr;
2015-08-22 22:43:26 +02:00
2018-05-01 12:25:53 +02:00
# by default nginx times out connections in one minute
proxy_read_timeout 1d;
2016-11-24 11:44:51 +01:00
2018-05-01 12:25:53 +02:00
# Include SSOWAT user panel.
2015-08-22 22:43:26 +02:00
include conf.d/yunohost_panel.conf.inc;
more_clear_input_headers 'Accept-Encoding';
2015-08-22 20:24:46 +02:00
}