如何更改nameko中的侦听端口?

时间:2016-10-07 15:04:19

标签: nameko

之前有人使用nameko吗?

在其文档中,我找不到有关更改侦听端口的任何信息: http://nameko.readthedocs.io/en/stable/built_in_extensions.html#http-get-post

这可能吗?

1 个答案:

答案 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

Official Reference