18 lines
478 B
Nginx Configuration File
18 lines
478 B
Nginx Configuration File
|
server {
|
||
|
listen 80;
|
||
|
|
||
|
location /opop-service/ {
|
||
|
proxy_pass_request_headers on;
|
||
|
proxy_set_header Host $host;
|
||
|
proxy_set_header X-Forwarded-Prefix '/opop-service';
|
||
|
proxy_pass http://opop-service:8080/;
|
||
|
}
|
||
|
|
||
|
location /document-service/ {
|
||
|
proxy_pass_request_headers on;
|
||
|
proxy_set_header Host $host;
|
||
|
proxy_set_header X-Forwarded-Prefix '/document-service';
|
||
|
proxy_pass http://document-service:8081/;
|
||
|
|
||
|
}
|
||
|
}
|