Hi,
I would like to set it up so other users could point their domains at mine eg:
client.clientsite.com -> client.mysite.com
My extra nginx file looks like so:
server_name *.mysite.com;
location ~ / {
proxy_pass http://localhost:3000
proxy_set_header Host $host;
proxy_set_header...