1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/zeronet_ynh.git synced 2024-09-03 17:46:12 +02:00
zeronet_ynh/conf/nginx.conf.template

15 lines
486 B
Text
Raw Normal View History

2017-03-03 21:26:30 +01:00
location YNH_WWW_PATH {
proxy_pass http://127.0.0.1:YNH_LOCAL_PORT;
2017-03-04 14:50:55 +01:00
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Accept 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8';
2017-03-03 21:26:30 +01:00
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
}