@fairmint/canton-node-sdk
Version:
Canton Node SDK
46 lines (42 loc) • 880 B
Plain Text
events {
worker_connections 64;
}
http {
server {
listen 80;
server_name wallet.localhost;
location /api/validator {
rewrite ^\/(.*) /$1 break;
proxy_pass http://validator:5003/api/validator;
}
location / {
proxy_pass http://wallet-web-ui:8080/;
}
}
server {
listen 80;
server_name sv.localhost;
location /api/sv {
rewrite ^\/(.*) /$1 break;
proxy_pass http://sv-app:5014/api/sv;
}
location / {
proxy_pass http://sv-web-ui:8080/;
}
}
server {
listen 80;
server_name scan.localhost;
location /api/scan {
rewrite ^\/(.*) /$1 break;
proxy_pass http://scan:5012/api/scan;
}
location /registry {
rewrite ^\/(.*) /$1 break;
proxy_pass http://scan:5012/registry;
}
location / {
proxy_pass http://scan-web-ui:8080/;
}
}
}