mirror of
https://github.com/certbot/certbot.git
synced 2026-06-03 13:59:02 -04:00
16 lines
274 B
Nginx Configuration File
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;
|
|
}
|
|
}
|
|
}
|