我正在尝试在我的共享服务器上部署 rasa。我已经按照Docker Compose 安装文档来部署 rasa。并尝试使用脚本和手动部署。但它不起作用。
由于它共享服务器,我的80 and 443
端口被使用,因此我将rasa/nginx
容器端口更改为8080 and 8443
, 在docker-compose.yml
文件中
当我点击http://<server_ip>:8080
它被重定向到http://<server_ip>/api/health
并最终显示无法连接时。
当我点击 url 时http://<server_ip>:8080/conversations
,它会显示标题为“Rasa X”的空白页面。
编辑:
仍然无法弄清楚是什么问题。但现在网址http://<server_ip>:8080/
返回502 Bad Gateway
从日志docker-compose logs:
[error] 17#17: *40 connect() failed (111: Connection refused) while connecting to upstream, client: 43.239.112.255, server: , request: "GET / HTTP/1.1", upstream: "http://192.168.64.6:5002/", host: "http://<server_ip>:8080"
知道是什么原因造成的吗?