1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/tube_ynh.git synced 2024-09-04 01:46:11 +02:00
tube_ynh/conf/nginx.conf

17 lines
460 B
Nginx Configuration File
Raw Normal View History

2022-08-27 00:04:19 +02:00
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ {
proxy_pass http://127.0.0.1:__PORT__;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
2022-08-27 07:27:12 +02:00
# Set max upload size
client_max_body_size 10G;
2022-08-27 14:23:22 +02:00
proxy_connect_timeout 1200;
proxy_send_timeout 1200;
proxy_read_timeout 1200;
send_timeout 1200;
2022-08-27 00:04:19 +02:00
}