Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update nginx.conf #3

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 14 additions & 9 deletions nginx.conf
Original file line number Diff line number Diff line change
@@ -1,19 +1,24 @@


events { }

http {

upstream all {
least_conn; # Balanceamento com base em menor conexão ativa
server 172.31.0.37:80;
server 172.31.0.151:80;
server 172.31.0.149:80;
}

server {
listen 4500;
location / {
proxy_pass http://all/;
}
}
listen 4500;

location / {
proxy_pass http://all/;
proxy_connect_timeout 5s;
proxy_send_timeout 10s;
proxy_read_timeout 10s;
proxy_set_header Host $host;
}
}
}


events { }