21 lines
318 B
Nginx Configuration File
21 lines
318 B
Nginx Configuration File
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
server_name localhost;
|
|
|
|
location /service1/ {
|
|
proxy_pass http://service1:13999;
|
|
}
|
|
|
|
location /service2/ {
|
|
proxy_pass http://service2:13998;
|
|
}
|
|
}
|
|
}
|
|
|