From f520eee2a8bbb36404faf877c9a01b84f8ae523c Mon Sep 17 00:00:00 2001 From: Dan Ciruli Date: Thu, 5 May 2016 09:45:45 -0700 Subject: [PATCH] Change app to listen on 8081 the proxy listens on 8080 and forwards to 8081 --- managed_vms/endpoints/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/managed_vms/endpoints/main.py b/managed_vms/endpoints/main.py index 18589640991..ba7ab5a61fb 100644 --- a/managed_vms/endpoints/main.py +++ b/managed_vms/endpoints/main.py @@ -90,4 +90,4 @@ def unexpected_error(e): if __name__ == '__main__': # This is used when running locally. Gunicorn is used to run the # application on Google App Engine. See entrypoint in app.yaml. - app.run(host='127.0.0.1', port=8080, debug=True) + app.run(host='127.0.0.1', port=8081, debug=True)