Im using NGINX for http proxy like below
http { server { server_name example.com; location / { proxy_pass http://localhost:3000/; } } }