Skip to content

Commit 8b0e2c7

Browse files
committed
Hardcode proxy URLs in nginx config
Replace environment variables with hardcoded URLs to postguard-main.cs.ru.nl for both pkg and irma endpoints.
1 parent 0ff2995 commit 8b0e2c7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docker/nginx.conf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,11 @@ http {
8989
}
9090

9191
location /pkg/ {
92-
proxy_pass http://${PKG_URL}:${PKG_PORT}/;
92+
proxy_pass https://postguard-main.cs.ru.nl/pkg/;
9393
}
9494

9595
location /irma/ {
96-
proxy_pass http://${IRMA_URL}:${IRMA_PORT}/irma/;
96+
proxy_pass https://postguard-main.cs.ru.nl/irma/;
9797
}
9898
}
9999
}

0 commit comments

Comments
 (0)