Files
albumik_ynh/conf/nginx.conf
2026-05-01 09:06:44 +02:00

12 lines
386 B
Nginx Configuration File

# Albumik - YunoHost nginx reverse proxy
location __PATH__/ {
proxy_pass http://127.0.0.1:__PORT__/;
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_read_timeout 300;
proxy_send_timeout 300;
client_max_body_size 2048M;
}