From ae85ea247e703604a1332f6754de3d41cba4e75f Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Thu, 29 Jan 2015 14:59:49 -0500 Subject: [PATCH] Revert changes accidentally checked in --- application.py | 2 +- conf/gunicorn_local.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/application.py b/application.py index d8b6b2838..a9bd0df6e 100644 --- a/application.py +++ b/application.py @@ -12,4 +12,4 @@ import registry if __name__ == '__main__': logging.config.fileConfig('conf/logging.conf', disable_existing_loggers=False) - application.run(port=80, debug=True, threaded=True, host='0.0.0.0') + application.run(port=5000, debug=True, threaded=True, host='0.0.0.0') diff --git a/conf/gunicorn_local.py b/conf/gunicorn_local.py index 1389c0472..aa16e63ec 100644 --- a/conf/gunicorn_local.py +++ b/conf/gunicorn_local.py @@ -1,4 +1,4 @@ -bind = '0.0.0.0:80' +bind = '0.0.0.0:5000' workers = 2 worker_class = 'gevent' timeout = 2000