我想在 Falcon 和 gunicorn 中运行 EC2 实例简单的 API 构建。我想通过桥接(docker0 IP 172.17.0.1)从安装在该主机上的 docker 容器访问该 API。
我正在使用 gunicorn 命令运行 API 应用程序:
gunicorn -b 172.17.0.1:8000 simple-api:api
我可以从 docker 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