peertube-search-index_ynh/conf/nginx.conf
ericgaspar 7e0f6eb887
4.3
2021-11-30 14:23:14 +01:00

14 lines
375 B
Nginx Configuration File

#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ {
# Path to source
alias __FINALPATH__/ ;
proxy_pass http://localhost:__PORT__;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
}