From 96f1a3595d70fde9312353954c9976a46fdf6115 Mon Sep 17 00:00:00 2001 From: Joshua Yin Date: Tue, 29 Jan 2019 11:26:12 +0800 Subject: [PATCH] =?UTF-8?q?=E7=9B=91=E5=90=AC=E6=89=80=E6=9C=89ip=E8=AF=B7?= =?UTF-8?q?=E6=B1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ufile-auth-server-python/.gitignore | 2 +- ufile-auth-server-python/server/auth_server.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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)