Hi. Is there a way to run this program using an alias? I need the website address: **my.site.com/dash/** I redirect the proxy server like this: ``` server { server_name my.site.com; location /dash/ { proxy_pass http://localhost:3030; } ``` But it doesn't work. I get the error: https://my.site.com/dash/ ``` Drats! That Dashboard doesn't exist. You may have mistyped the address or the page may have moved. ``` What am I doing wrong?