1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/osjs_ynh.git synced 2024-09-03 19:56:11 +02:00

Create nginx.conf

This commit is contained in:
frju365 2017-04-16 18:18:37 +02:00 committed by GitHub
parent c9665735b4
commit f571387b45

10
conf/nginx.conf Normal file
View file

@ -0,0 +1,10 @@
location / {
proxy_pass http://localhost:__PORT__/;
proxy_set_header Host $host;
proxy_buffering off;
fastcgi_param REMOTE_USER $remote_user;
client_max_body_size 50M;
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
}