From 15895f4055ea7e765a2bd7548bbb974739182b53 Mon Sep 17 00:00:00 2001 From: marblepebble Date: Fri, 18 Aug 2017 21:38:32 +0100 Subject: [PATCH] Specify ip4 address to bind to --- cps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cps.py b/cps.py index 523246b2..34e49cf2 100755 --- a/cps.py +++ b/cps.py @@ -30,7 +30,7 @@ if __name__ == '__main__': else: web.app.logger.info('Falling back to Tornado') http_server = HTTPServer(WSGIContainer(web.app)) - http_server.listen(web.ub.config.config_port) + http_server.listen(web.ub.config.config_port, '0.0.0.0') IOLoop.instance().start() IOLoop.instance().close(True)