For a particular internal purpose I would like to send people back to a url on their own machine, how exactly would I do this? I can't really do
server {
server_name www.yayaya.com;
rewrite ^(.*) localhost:3000$1 permanent;
}
because that will point to the server's localhost, right?