1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/streama_ynh.git synced 2024-09-03 20:26:30 +02:00
This commit is contained in:
liberodark 2018-11-27 17:26:50 +01:00
parent efe0735f58
commit 9a9dbdd406

View file

@ -1,16 +0,0 @@
server {
listen 80;
listen [::]:80;
server_name __DOMAIN__;
client_max_body_size 128g; # allows larger files (like videos) to be uploaded.
location __PATH__/ {
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 X-Forwarded-Proto $scheme;
proxy_pass http://localhost:__PORT__;
}
}