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

23 lines
723 B
Nginx Configuration File
Raw Normal View History

2017-02-02 19:13:28 +01:00
location __PATH__ {
2017-04-21 12:54:39 +02:00
if ($scheme = http) {
rewrite ^ https://$server_name$request_uri? permanent;
2017-02-02 19:13:28 +01:00
}
2017-04-21 12:54:39 +02:00
#--PRIVATE--# Include SSOWAT user panel.
#--PRIVATE--include conf.d/yunohost_panel.conf.inc;
2017-02-02 19:13:28 +01:00
2017-04-21 12:54:39 +02:00
access_log /var/log/nginx/lstu.access.log;
2017-02-02 19:14:09 +01:00
error_log /var/log/nginx/lstu.error.log;
2017-02-02 19:13:28 +01:00
proxy_pass http://127.0.0.1:__PORT__;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
2017-04-21 12:54:39 +02:00
proxy_set_header X-Remote-Port $remote_port;
proxy_set_header X-Forwarded-Proto $scheme;
2017-02-02 19:13:28 +01:00
# We expect the downsteam servers to redirect to the right hostname, so don't do any rewrite$
proxy_redirect off;
}