From b41694e4cf601682dbb80d2a7f6b580a058cd38d Mon Sep 17 00:00:00 2001 From: rav4s Date: Fri, 18 Dec 2020 10:48:53 -0600 Subject: [PATCH] Changed port to 80 --- garage_door_script.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/garage_door_script.py b/garage_door_script.py index 2c81248..b0a9853 100644 --- a/garage_door_script.py +++ b/garage_door_script.py @@ -77,4 +77,4 @@ def favicon(): 'favicon.ico',mimetype='image/vnd.microsoft.icon') if __name__ == '__main__': - app.run(host='0.0.0.0') #Run the webserver + app.run(host='0.0.0.0:80') #Run the webserver