web/conf/nginx.conf
server {
listen 80;
location /graphql-server/graphql {
proxy_pass http://graphql-server-service.hm:31800/graphql;
}
location /rasa-service/webhooks {
proxy_pass http://hm-release-rasa.hm-rasa:5005/webhooks;
}
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html =404;
}
include /etc/nginx/extra-conf.d/*.conf;
}