diff --git a/conf/nginx.conf b/conf/nginx.conf index 1b0b668..590241b 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -112,6 +112,10 @@ http { } } + location /mainnet/ { + proxy_pass http://127.0.0.1:$PUBLIC_PORT/; + } + location / { proxy_pass http://backend-testnet; proxy_http_version 1.1; @@ -193,6 +197,10 @@ http { } } + location /testnet/ { + proxy_pass http://127.0.0.1:$PUBLIC_PORT_TESTNET/; + } + location / { proxy_pass http://backend-mainnet; proxy_http_version 1.1;