Blockchain explorer for Ethereum based network and a tool for inspecting and analyzing EVM based blockchains.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
blockscout/docker-compose/proxy/nginx.conf

14 lines
346 B

server {
listen 80;
server_name localhost;
proxy_http_version 1.1;
location / {
proxy_pass http://frontend:3000;
}
location /api/v2 {
proxy_pass http://backend:4000/api/v2;
}
location /api/account/v1 {
proxy_pass http://backend:4000/api/account/v1;
}
}