26 lines
741 B
Nginx Configuration File
26 lines
741 B
Nginx Configuration File
|
server {
|
||
|
listen 8080;
|
||
|
listen [::]:8080;
|
||
|
server_name localhost;
|
||
|
|
||
|
location / {
|
||
|
root /usr/share/nginx/html;
|
||
|
index index.html index.htm;
|
||
|
}
|
||
|
|
||
|
location /worker-1/ {
|
||
|
proxy_pass http://worker-1:8080/;
|
||
|
proxy_set_header Host $host;
|
||
|
proxy_set_header X-Real-IP $remote_addr;
|
||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||
|
proxy_set_header X-Forwarded-Prefix /worker-1;
|
||
|
}
|
||
|
|
||
|
location /worker-2/ {
|
||
|
proxy_pass http://worker-2:8080/;
|
||
|
proxy_set_header Host $host;
|
||
|
proxy_set_header X-Real-IP $remote_addr;
|
||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||
|
proxy_set_header X-Forwarded-Prefix /worker-2;
|
||
|
}
|
||
|
}
|