1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/invidious_ynh.git synced 2024-09-03 19:15:55 +02:00
invidious_ynh/conf/nginx.conf

25 lines
838 B
Nginx Configuration File
Raw Normal View History

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/ {
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-01 15:59:14 +01:00
more_set_headers "X-Frame-Options : ALLOWALL";
more_set_headers "Content-Security-Policy : upgrade-insecure-requests ; frame-ancestors * ";
2021-02-01 15:59:14 +01:00
}