2022-08-06 19:00:44 +02:00
|
|
|
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
|
|
|
|
location __PATH__/ {
|
|
|
|
|
2022-08-07 03:29:06 +02:00
|
|
|
proxy_pass http://127.0.0.1:__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-Port $server_port;
|
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
|
proxy_set_header X-Forwarded-Host $server_name;
|
2022-08-06 19:00:44 +02:00
|
|
|
|
2022-08-06 23:23:06 +02:00
|
|
|
# Include SSOWAT user panel.
|
|
|
|
include conf.d/yunohost_panel.conf.inc;
|
|
|
|
}
|
2022-08-06 19:00:44 +02:00
|
|
|
|
2022-08-06 23:23:06 +02:00
|
|
|
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
|
|
|
|
location __PATH__/static {
|
|
|
|
alias __FINALPATH__/staticfiles;
|
|
|
|
}
|
2022-08-06 19:00:44 +02:00
|
|
|
|
2022-08-06 23:23:06 +02:00
|
|
|
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
|
|
|
|
location __PATH__/media {
|
2022-08-10 01:25:31 +02:00
|
|
|
alias __DATADIR__;
|
2022-08-06 23:23:06 +02:00
|
|
|
}
|
2022-08-06 19:00:44 +02:00
|
|
|
|
|
|
|
|