I am self-hosting Frappe HRM + ERPNext on my Ubuntu VPS. I am using the docker compose file provided by Frappe. I have put the docker containers behind a reverse proxy (Nginx). When I create a new user and send a welcome email, inside the welcome email, it also shows the port 8000. So the invite URL ends up being https://:8000/update-password?key=. How do I remove the port from the invite URL? The actual URL should be https:///update-password?key= since the port is 443 (default HTTPS port). If I manually remove the :8000 from the URL, everything works fine. Is there a way to change this behavior? I found a similar post Port number Missing in welcome email but it is the opposite of what I want. Plus I am using docker compose file to host it so I think the answer will be slightly different. Thank you for the help!