Skip to content

Commit 5c7b0b1

Browse files
tnodinealfredfrancis
authored andcommitted
NEVER expose a flask server with debug=True over the internet. Especially by default. (alfredfrancis#122)
1 parent 9b88114 commit 5c7b0b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

run.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from app import app
22

33
if __name__ == '__main__':
4-
app.run(host='0.0.0.0', port=8080, debug=True, threaded=True)
4+
app.run(host='127.0.0.1', port=8080, debug=True, threaded=True)

0 commit comments

Comments
 (0)