2022-07-02 19:06:02 +02:00
|
|
|
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
|
2021-09-08 10:52:58 +02:00
|
|
|
location __PATH__/ {
|
|
|
|
|
2021-09-10 14:41:29 +02:00
|
|
|
proxy_set_header Accept-Encoding "";
|
|
|
|
try_files $uri @proxy;
|
2021-09-08 10:52:58 +02:00
|
|
|
|
|
|
|
# Include SSOWAT user panel.
|
|
|
|
include conf.d/yunohost_panel.conf.inc;
|
|
|
|
}
|
2021-09-10 14:41:29 +02:00
|
|
|
|
|
|
|
location @proxy {
|
2021-10-08 10:25:04 +02:00
|
|
|
proxy_pass http://localhost:__PORT__;
|
2021-09-10 14:41:29 +02:00
|
|
|
proxy_set_header Host $host;
|
|
|
|
proxy_set_header X-Forwarded-Host $host;
|
|
|
|
proxy_set_header X-Forwarded-For $remote_addr:$remote_port;
|
|
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
|
|
# for websocket
|
|
|
|
proxy_http_version 1.1;
|
|
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
|
|
proxy_set_header Connection $connection_upgrade;
|
|
|
|
}
|