码头工人桥和猎鹰枪



我想在Falcon和gunicorn中的EC2实例简单API构建上运行。我想通过桥接(docker0 IP 172.17.0.1(从安装在该主机上的 docker 容器访问该 API。

我正在使用 gunicorn 命令运行 API 应用程序:

Gunicorn -B 172.17.0.1:8000 simple-API:API

我可以从码头工人 ping 该 IP 地址,我可以远程登录到端口 8000,但是当我执行 curl POST 命令时,我收到以下错误:

 < HTTP/1.1 404 Not Found
 * Server gunicorn/19.7.1 is not blacklisted
 < Server: gunicorn/19.7.1
 < Date: Tue, 23 May 2017 08:26:01 GMT
 < Connection: close
 < content-type: application/json; charset=UTF-8
 < content-length: 0
 <
 * Closing connection 0

问题解决了。我在 POST 请求中有一个错字。

相关内容

  • 没有找到相关文章

最新更新