Hello, Using the Nginx plus REST API I want to create the equivalent server entry that will have a server_name with example.somesite.com to do a reverse proxy to http://localhost:3000. Example manual config: server { listen 80; server_name example.somesite.com; location / { proxy_pass http://localhost:3000; } } I have tried doing the following usingby johnhaigh - How to...