Change UI port to 80

This commit is contained in:
Darko Lukic 2018-04-22 19:06:55 +02:00
parent 1ef501d343
commit 66c2f16634

View file

@ -21,4 +21,4 @@ if __name__ == '__main__':
def server_index():
return send_from_directory(UI_DIR, 'index.html')
app.run(debug=True, host='0.0.0.0')
app.run(debug=True, host='0.0.0.0', port=80)