certbot/certbot-compatibility-test/nginx/nginx-roundtrip-testdata/loadbalanceexample/nginx.conf
2016-07-11 13:58:21 -07:00

16 lines
274 B
Nginx Configuration File

http {
upstream myproject {
server 127.0.0.1:8000 weight=3;
server 127.0.0.1:8001;
server 127.0.0.1:8002;
server 127.0.0.1:8003;
}
server {
listen 80;
server_name www.domain.com;
location / {
proxy_pass http://myproject;
}
}
}