28 lines
794 B
Nginx Configuration File
28 lines
794 B
Nginx Configuration File
http {
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
server_name localhost;
|
|
|
|
location /waiters/ {
|
|
proxy_pass http://waiter-service:4000/;
|
|
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 /test;
|
|
}
|
|
|
|
location /restaurants/ {
|
|
proxy_pass http://restaurant-service:5089/;
|
|
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 /admin;
|
|
}
|
|
}
|
|
}
|