الملفات
nginxLB/nginx.conf.template
2025-11-01 07:46:17 +00:00

17 أسطر
295 B
Plaintext

events {}
http {
upstream backend {
${BACKEND_SERVERS}
}
server {
listen ${LISTEN_PORT:-80};
location / {
proxy_pass http://backend;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
}
}