我想在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地址,我可以telnet到端口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
答案 0 :(得分:0)
问题解决了。我在POST请求中输了一个错字。