github.com/mysteriumnetwork/node@v0.0.0-20240516044423-365054f76801/e2e/nginx/nginx.conf (about) 1 events { 2 worker_connections 1024; 3 } 4 http { 5 server { 6 listen 8080 default_server; 7 8 location / { 9 proxy_pass http://discovery-service:8081; 10 } 11 12 location /api/v4/prices { 13 proxy_pass http://discovery-pricer:8091; 14 } 15 } 16 }