在代理后面提供服务时,如何配置Strapi以显示URL的外部域?

时间:2018-10-10 18:49:10

标签: nginx strapi

我正在尝试从“文件上传”中的项目复制的链接具有正确的域。当前他们使用'http://localhost:1337',这是不正确的,因为Strapi在Nginx后面运行。有没有办法指定面向外部的主机是什么?

1 个答案:

答案 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为我指明了正确的方向!