الملفات
nginxLB/nginx.conf.template

17 أسطر
279 B
Plaintext

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