我正在通过 nginx 为带有反向代理的 django 应用程序提供服务。该应用程序在映射到 example.com 的 localhost:8686 下本地运行。因此,重置密码的正确链接类似于:
https://example.com:8686/accounts/reset/MQ/591-05377c39db92f2d5368a/
但这就是电子邮件中出现的内容:
https://localhost:8686/accounts/reset/MQ/591-05377c39db92f2d5368a/
显然,django(本地服务员服务)不知道域名。是否可以告诉 django 它应该使用哪个域名?