之前有人使用nameko吗?
在其文档中,我找不到有关更改侦听端口的任何信息: http://nameko.readthedocs.io/en/stable/built_in_extensions.html#http-get-post
这可能吗?
答案 0 :(得分:1)
正(最终)回复gh issue:
您需要使用包含密钥WEB_SERVER_ADDRESS
的配置文件:
# config.yaml
AMQP_URI: amqp://guest:guest@localhost
WEB_SERVER_ADDRESS: 0.0.0.0:8888
然后
$ nameko run --config config.yaml your_service_module