Files
dtic-DIIAA/servicios/nginx/conf.d/apps.conf
T

13 lines
481 B
Plaintext

# Archivo: apps.conf
# Ubicación original centralizada: /home/rmonla/Documentos/GitHub/dtic-DIIAA/servicios/nginx/conf.d/apps.conf
# Este bloque de NGINX maneja el servicio de APPs (TinyFileManager)
location /apps/ {
client_max_body_size 20G;
proxy_pass http://127.0.0.1:8082/;
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;
}