mirror of
https://github.com/MichaelCade/90DaysOfDevOps.git
synced 2025-01-31 09:59:41 +07:00
13 lines
226 B
Plaintext
13 lines
226 B
Plaintext
|
upstream webservers {
|
||
|
server 192.168.169.131:8000;
|
||
|
server 192.168.169.132:8000;
|
||
|
}
|
||
|
|
||
|
server {
|
||
|
listen 80;
|
||
|
|
||
|
location / {
|
||
|
proxy_pass http://webservers;
|
||
|
}
|
||
|
}
|