2020-08-09 14:48:13 +02:00
|
|
|
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
|
2018-05-01 12:25:53 +02:00
|
|
|
location ^~ __PATH__/ {
|
2020-08-09 14:48:13 +02:00
|
|
|
|
2018-05-01 12:25:53 +02:00
|
|
|
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
|
|
|
|
2021-08-30 10:19:47 +02:00
|
|
|
# Include SSOWAT user panel.
|
|
|
|
include conf.d/yunohost_panel.conf.inc;
|
|
|
|
more_clear_input_headers 'Accept-Encoding';
|
2015-08-22 20:24:46 +02:00
|
|
|
}
|