2021-01-29 23:34:36 +01:00
|
|
|
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
|
|
|
|
location __PATH__/ {
|
|
|
|
|
2021-01-30 13:46:56 +01:00
|
|
|
# Path to source
|
|
|
|
alias __FINALPATH__/;
|
2021-01-30 11:02:12 +01:00
|
|
|
|
2021-01-30 13:46:56 +01:00
|
|
|
index index.html;
|
2021-01-29 23:34:36 +01:00
|
|
|
|
2021-01-30 13:46:56 +01:00
|
|
|
# Force usage of https
|
|
|
|
f ($scheme = http) {
|
|
|
|
rewrite ^ https://$server_name$request_uri? permanent;
|
|
|
|
}
|
2021-01-29 23:34:36 +01:00
|
|
|
|
2021-01-30 13:54:15 +01:00
|
|
|
# Include SSOWAT user panel.
|
|
|
|
include conf.d/yunohost_panel.conf.inc;
|
|
|
|
}
|
|
|
|
|
2021-01-30 13:46:56 +01:00
|
|
|
location = __PATH__/http-bind {
|
|
|
|
proxy_pass http://localhost:5290/http-bind;
|
|
|
|
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-Host $server_name;
|
|
|
|
proxy_set_header X-Forwarded-Port $server_port;
|
2021-01-30 11:02:12 +01:00
|
|
|
|
2021-01-30 13:46:56 +01:00
|
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
|
|
proxy_set_header Connection “upgrade”;
|
|
|
|
}
|