Files
startusingdocker/compose/proxy/nginx.conf
2026-02-12 12:26:52 +01:00

16 lines
227 B
Nginx Configuration File

events {}
http{
upstream backend{
server web:80;
server web_2:80;
server web_3:80;
}
server{
listen 80;
location / {
proxy_pass http://backend;
}
}
}