13 lines
222 B
Plaintext
13 lines
222 B
Plaintext
upstream gateway {
|
|
server gateway-blue:8081;
|
|
}
|
|
|
|
server {
|
|
listen 8281;
|
|
|
|
location / {
|
|
add_header Content-Type text/html;
|
|
return 200 '<html><body><h1>Nginx Static Page</h1></body></html>';
|
|
}
|
|
}
|