From 1eb14995f4f93f3ee5c1a2fc9568293f6d47a9c3 Mon Sep 17 00:00:00 2001 From: Will Holland Date: Wed, 9 Sep 2015 16:12:55 +0100 Subject: Fix serving only on localhost --- source/bottlerock.py | 2 +- source/master.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source/bottlerock.py b/source/bottlerock.py index 06580f6..609d6b5 100644 --- a/source/bottlerock.py +++ b/source/bottlerock.py @@ -38,4 +38,4 @@ def repo_update(): pass if __name__ == '__main__': - run(host='localhost', port=8080, debug=True) + run(host='0.0.0.0', port=8080, debug=True) diff --git a/source/master.cfg b/source/master.cfg index c1a084b..690ecb5 100644 --- a/source/master.cfg +++ b/source/master.cfg @@ -154,7 +154,7 @@ c['titleURL'] = "https://wiki.baserock.org" # with an externally-visible host name which the buildbot cannot figure out # without some help. -c['buildbotURL'] = "http://localhost:8010/" +c['buildbotURL'] = "http://0.0.0.0:8010/" ####### DB URL -- cgit v1.2.1