0

Has anyone used nameko before?

In its documentation, I can't find anything about changing listening port: http://nameko.readthedocs.io/en/stable/built_in_extensions.html#http-get-post

Is this possible?

laike9m
  • 18,344
  • 20
  • 107
  • 140

1 Answers1

1

As (eventually) replied on the gh issue:

You need to use a config file with the key WEB_SERVER_ADDRESS:

# config.yaml
AMQP_URI: amqp://guest:guest@localhost
WEB_SERVER_ADDRESS: 0.0.0.0:8888

Then

$ nameko run --config config.yaml your_service_module

Official Reference

Abhijeet
  • 8,561
  • 5
  • 70
  • 76
second
  • 28,029
  • 7
  • 75
  • 76