Fix gassistant cherrypy (#148)

* Update hassio_oauth.py

* Update config.json

* Update run.sh

* Update run.sh

* Update config.json
This commit is contained in:
Pascal Vizeli
2017-07-22 17:14:53 +02:00
committed by GitHub
parent ceb9a71df4
commit 8e438fc33d
3 changed files with 6 additions and 5 deletions

View File

@@ -75,5 +75,5 @@ if __name__ == '__main__':
with oauth_json.open('r') as data:
user_data = json.load(data)['installed']
cherrypy.config.update({'server.socket_port': 9324})
cherrypy.config.update({'server.socket_port': 9324, 'server.socket_host': '0.0.0.0'})
cherrypy.quickstart(oauth2Site(user_data, cred_json))