2021-07-23 16:29:25 +02:00
|
|
|
location ^~ __PATH__/ {
|
2019-05-29 00:20:58 +02:00
|
|
|
|
2022-01-27 00:17:52 +01:00
|
|
|
rewrite ^__PATH__/admin$ https://$host__PATH__/admin/ permanent;
|
|
|
|
rewrite ^__PATH__/ui$ https://$host__PATH__/ui/ permanent;
|
2019-05-29 00:20:58 +02:00
|
|
|
|
2022-01-27 00:17:52 +01:00
|
|
|
proxy_pass http://localhost:__PORT__/;
|
|
|
|
proxy_set_header Host $host;
|
|
|
|
proxy_redirect http:// https://;
|
|
|
|
proxy_http_version 1.1;
|
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
|
|
proxy_set_header Connection "Upgrade";
|
2021-09-17 23:41:19 +02:00
|
|
|
|
2022-01-27 00:17:52 +01:00
|
|
|
# Include SSOWAT user panel.
|
|
|
|
include conf.d/yunohost_panel.conf.inc;
|
2019-05-29 00:20:58 +02:00
|
|
|
}
|