From: Ben Darnell Date: Mon, 30 Jan 2012 05:56:53 +0000 (-0800) Subject: Run the website in python2.7 mode X-Git-Tag: v2.2.0~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e960e9bc9d48906ed37b65ad6eb774ab33637170;p=thirdparty%2Ftornado.git Run the website in python2.7 mode --- diff --git a/website/app.yaml b/website/app.yaml index 9484a9113..92e2fbf8b 100644 --- a/website/app.yaml +++ b/website/app.yaml @@ -1,14 +1,15 @@ application: python-tornado version: 2 -runtime: python +runtime: python27 +threadsafe: yes api_version: 1 handlers: - url: /static/tornado-0.1.tar.gz - script: website.py + script: website.application - url: /static/tornado-0.2.tar.gz - script: website.py + script: website.application - url: /static/ static_dir: static @@ -22,10 +23,10 @@ handlers: upload: static/favicon.ico - url: /documentation/? - script: website.py + script: website.application - url: /documentation static_dir: sphinx/build/html - url: /.* - script: website.py + script: website.application