20 lines
349 B
Nginx Configuration File
20 lines
349 B
Nginx Configuration File
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
server_name localhost;
|
|
|
|
location /aggregator-api/ {
|
|
proxy_pass http://aggregator-api-service:8080/;
|
|
}
|
|
|
|
location /parser-api/ {
|
|
proxy_pass http://parser-api-service:8081/;
|
|
}
|
|
}
|
|
}
|