Add nginx.conf.template

هذا الالتزام موجود في:
2025-11-01 07:46:17 +00:00
الأصل 87b6a89c02
التزام 21a939e66e

17
nginx.conf.template Normal file
عرض الملف

@@ -0,0 +1,17 @@
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;
}
}
}