Gunicorn
http://docs.gunicorn.org/en/stable/_images/gunicorn.png
WSGI プロトコルに準拠した Webアプリケーションサーバー
自作WebアプリもWSGI準拠にすればGunicornから起動できる
起動:
gunicorn --workers 2 --bind 127.0.0.1:8080 main.application
gunicorn の起動オプション
関連
Django + gunicorn のログ出力設定
ログ出力