worker_processes 1; error_log build/nginx/error.log; pid build/nginx/nginx.pid; events { worker_connections 1024; } http { sendfile on; default_type application/octet-stream; access_log build/nginx/access.log; client_body_temp_path build/nginx/client-body; proxy_temp_path build/nginx/proxy; fastcgi_temp_path build/nginx/fastcgi; uwsgi_temp_path build/nginx/uwsgi; scgi_temp_path build/nginx/scgi; server { listen 8080; server_name localhost; autoindex off; location /static { alias build/public/; autoindex on; } location ~ ^/account(?:/(.*))?$ { proxy_pass http://127.0.0.1:3000/$1$is_args$args; } location ~ ^/salix(?:/(.*))?$ { proxy_pass http://127.0.0.1:3001/$1$is_args$args; } location ~ ^/customer(?:/(.*))?$ { proxy_pass http://127.0.0.1:3002/$1$is_args$args; } } }