1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/nodebb_ynh.git synced 2024-09-03 19:46:29 +02:00

Create nginx.conf

This commit is contained in:
frju365 2017-04-07 23:33:24 +02:00 committed by GitHub
parent 15fcccb30f
commit 0fde2560f4

11
conf/nginx.conf Normal file
View file

@ -0,0 +1,11 @@
location / {
if ($scheme = http) {
rewrite ^ https://$server_name$request_uri? permanent;
}
proxy_pass http://localhost:__PORT__/;
proxy_set_header Host $host;
proxy_buffering off;
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
}