3 Dec
2020
3 Dec
'20
5:47 p.m.
Meehan, John wrote:
Hi, when someone creates a new account (Sign Up), an email is sent to them to confirm their email address. It has the form below. Does anyone know how I can change the server name in the URL (From server.example.com to something else)? I have an SSL proxy server that I want to direct users through. Thanks.
Its likely your SSL reverse proxy is not setting the proper headers for this to work, here is an example using Nginx:
location / {
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Host $host;
proxy_pass http://localhost:8000/;
}
Andrew.