Update ingress.conf

This commit is contained in:
Alexandre
2021-11-29 14:49:40 +01:00
committed by GitHub
parent 2e7ba6d1f3
commit 9ae63f2a79

View File

@@ -9,13 +9,13 @@ server {
location / {
add_header Access-Control-Allow-Origin *;
proxy_read_timeout 30;
proxy_pass http://backend/web/;
proxy_pass http://127.0.0.1:2202;
}
location /api/ {
location /admin {
add_header Access-Control-Allow-Origin *;
proxy_read_timeout 30;
proxy_pass http://backend/api/;
proxy_pass http://127.0.0.1:2203;
}
}