blob: e0c86fb092d452880187e4f2993dccb08a6936ef [file] [log] [blame]
server {
listen 80 default_server;
listen [::]:80 default_server;
root /html-root;
index index.html;
location /portalFE/ {
proxy_pass http://openk-others:8080/portalFE/;
}
location /portal/ {
proxy_pass http://openk-others:8080/portal/;
}
location = /contactdatabase {
return 302 /contactdatabase/;
}
location /contactdatabase/{
proxy_pass http://openk-others:8080/contactdatabase/;
}
location /contactdatabaseBE/{
proxy_pass http://openk-others:9155/;
}
location = /camunda {
return 302 /camunda/;
}
location /camunda/ {
proxy_pass http://openk-camunda:8080/camunda/;
}
location = /statementpaFE {
return 302 /statementpaFE/;
}
location /statementpaFE/ {
proxy_pass http://openk-spa-fe:80/;
}
location = /statementpaBE {
return 302 /camunda/;
}
location /statementpaBE/ {
proxy_pass http://openk-spa-be:80/;
}
}