nginx Frappe框架发送的欢迎邮件缺少端口号

vmjh9lq9  于 2023-06-05  发布在  Nginx
关注(0)|答案(1)|浏览(378)

当使用Frappe框架并将Nginx端口从80更改为8002以避免冲突时,我在系统发送的所有电子邮件中获得了损坏的URL。使用bench set-nginx-port 8002更改了端口。端口80和8000在VPS中已经忙碌。
当我使用hostname:port_number访问系统时,我将所有电子邮件作为hostname/the-rest-of-url。
frappe.ioGitHub上也报告了同样的问题,但目前还不清楚如何解决。
我该如何解决这个问题?感谢您的评分

6g8kf2rb

6g8kf2rb1#

打开site_config.json并写入"hostname":"http://<your_hostname>:<your-port-number>"。例如:

{
 "db_name": "your_db_name",
 "db_password": "your_db_password",
 "db_type": "your_db_type",
 "hostname": "http://your_host_name:port_number"
}

相关问题