- Edited
Hey, I was trying to add a custom Nginx config (for a different subdomain) that forwards to another service on my VPS but for some reason it decides to forward it to Mailcow UI. Can anyone tell me what I’m doing wrong? I posted the important parts of the config below.
server_name sub.domain.sh;
location / {
proxy_pass http://127.0.0.1:8181;
}