Skip to content

Commit

Permalink
fix: Docker compose fix (#151)
Browse files Browse the repository at this point in the history
  • Loading branch information
severinstampler authored May 15, 2023
2 parents 0af88fa + da919eb commit 61609f1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docker/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ services:
WALTID_WALLET_BACKEND_BIND_ADDRESS: 0.0.0.0
EXTERNAL_HOSTNAME: $HOSTNAME$COMPUTERNAME
volumes:
- .:/waltid-walletkit/data-root # data store volume incl. config files.
- .:/app/data-root # data store volume incl. config files.
extra_hosts:
- "$HOSTNAME$COMPUTERNAME:host-gateway"
wallet-ui:
Expand Down
6 changes: 6 additions & 0 deletions docker/ingress.conf
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,34 @@ server {
listen 80;
location ~* /(api|webjars|verifier-api|issuer-api)/ {
proxy_pass http://walletkit:8080;
proxy_redirect default;
}
location / {
proxy_pass http://wallet-ui:80/;
proxy_redirect default;
}
}

server {
listen 81;
location ~* /(api|webjars|verifier-api|issuer-api)/ {
proxy_pass http://walletkit:8080;
proxy_redirect default;
}
location / {
proxy_pass http://verifier-ui:80/;
proxy_redirect default;
}
}

server {
listen 82;
location ~* /(api|webjars|verifier-api|issuer-api)/ {
proxy_pass http://walletkit:8080;
proxy_redirect default;
}
location / {
proxy_pass http://issuer-ui:80/;
proxy_redirect default;
}
}

0 comments on commit 61609f1

Please sign in to comment.