1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/plume_ynh.git synced 2024-09-03 20:15:54 +02:00
plume_ynh/conf/nginx.conf
ericgaspar d2cbf6a28f
4.3
2021-12-30 19:14:37 +01:00

12 lines
355 B
Nginx Configuration File
Executable file

location __PATH__/ {
proxy_pass http://localhost:__PORT__/;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
client_max_body_size 10m;
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
}