2020-04-21 01:30:26 +02:00
|
|
|
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
|
|
|
|
location __PATH__/ {
|
|
|
|
|
2022-06-16 01:35:41 +02:00
|
|
|
access_log /var/log/nginx/lstu.access.log;
|
|
|
|
error_log /var/log/nginx/lstu.error.log;
|
2017-02-02 19:13:28 +01:00
|
|
|
|
2022-06-16 01:35:41 +02:00
|
|
|
proxy_pass http://127.0.0.1:__PORT__;
|
2017-02-02 19:13:28 +01:00
|
|
|
|
2022-06-16 01:35:41 +02:00
|
|
|
proxy_set_header Host $host;
|
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
|
proxy_set_header X-Remote-Port $remote_port;
|
|
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
2017-02-02 19:13:28 +01:00
|
|
|
|
2022-06-16 01:35:41 +02:00
|
|
|
# We expect the downsteam servers to redirect to the right hostname, so don't do any rewrite$
|
|
|
|
proxy_redirect off;
|
2019-02-15 14:54:27 +01:00
|
|
|
|
2022-06-16 01:35:41 +02:00
|
|
|
# Include SSOWAT user panel.
|
|
|
|
include conf.d/yunohost_panel.conf.inc;
|
2017-02-02 19:13:28 +01:00
|
|
|
}
|