2020-11-09 22:28:22 +01:00
|
|
|
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
|
|
|
|
location __PATH__/ {
|
|
|
|
|
2023-05-20 09:06:03 +02:00
|
|
|
proxy_pass http://127.0.0.1:__PORT__;
|
|
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
|
|
|
proxy_set_header Host $host; # so Invidious knows domain
|
|
|
|
proxy_http_version 1.1; # to keep alive
|
|
|
|
proxy_set_header Connection ""; # to keep alive
|
2020-11-09 22:28:22 +01:00
|
|
|
|
|
|
|
# Include SSOWAT user panel.
|
|
|
|
include conf.d/yunohost_panel.conf.inc;
|
|
|
|
}
|
2021-02-01 15:59:14 +01:00
|
|
|
|
|
|
|
location __PATH__/embed/ {
|
2021-02-16 20:03:56 +01:00
|
|
|
|
2023-05-20 09:06:03 +02:00
|
|
|
proxy_pass http://127.0.0.1:__PORT__/embed/;
|
|
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
|
|
|
proxy_set_header Host $host; # so Invidious knows domain
|
|
|
|
proxy_http_version 1.1; # to keep alive
|
|
|
|
proxy_set_header Connection ""; # to keep alive
|
2021-02-16 20:03:56 +01:00
|
|
|
|
2021-02-01 15:59:14 +01:00
|
|
|
more_set_headers "X-Frame-Options : ALLOWALL";
|
2021-03-06 17:47:46 +01:00
|
|
|
more_set_headers "Content-Security-Policy : upgrade-insecure-requests ; frame-ancestors * ";
|
2021-02-01 15:59:14 +01:00
|
|
|
}
|