diff --git a/ufile-auth-server-python/.gitignore b/ufile-auth-server-python/.gitignore index 1a63920..d83827d 100644 --- a/ufile-auth-server-python/.gitignore +++ b/ufile-auth-server-python/.gitignore @@ -1,6 +1,6 @@ *.DS_Store node_modules -__pycache__ +__pycache__/ *.log *.pyc *.bak diff --git a/ufile-auth-server-python/server/auth_server.py b/ufile-auth-server-python/server/auth_server.py index 4986995..aa6e0b0 100644 --- a/ufile-auth-server-python/server/auth_server.py +++ b/ufile-auth-server-python/server/auth_server.py @@ -52,4 +52,4 @@ def checkRequestParams(data): if __name__ == '__main__': - app.run(host='localhost', port='8000', debug=True) + app.run(host='0.0.0.0', port='8000', debug=True)