我正在尝试从“文件上传”中的项目复制的链接具有正确的域。当前他们使用'http://localhost:1337',这是不正确的,因为Strapi在Nginx后面运行。有没有办法指定面向外部的主机是什么?
答案 0 :(得分:0)
在./config/environments/**/server.json
文件的“代理”块中添加面向外部的域信息。
{
"host": "localhost",
"port": 1337,
"proxy": {
"enabled": true,
"ssl": true,
"host": "example.com",
"port": 8443
},
"autoReload": {
"enabled": true
},
"cron": {
"enabled": true
}
}
请参阅https://strapi.io/documentation/3.x.x/configurations/configurations.html#server
感谢Strapi slack channel上的Carlos为我指明了正确的方向!