gunicornをインストールしてみた。 フロントにはNginxを使っている。 Nginxインストール - i2bsの日記 gunicornインストール apt-get install python-dev wget -c http://peak.telecommunity.com/dist/ez_setup.py python ez_setup.py easy_install pip pip install gunicorn Hello world vi test.py# -*- coding: utf-8 - # # This file is part of gunicorn released under the MIT license. # See the NOTICE for more information. def app(environ, start_response): "

