プロジェクト

全般

プロフィール

調査 #130

Tatsuya ISHIGAKI さんが12日前に更新

Docker 学習中に登場した (p.76) ので調査 

 ## 参考 Web 
 - [[公式] uWSGI](https://uwsgi-docs.readthedocs.io/) 
 - [Flask ドキュメント内の uWSGI 説明](https://msiz07-flask-docs-ja.readthedocs.io/ja/latest/deploying/uwsgi.html) 
 - [[Wikipedia] WSGI](https://ja.wikipedia.org/wiki/Web_Server_Gateway_Interface) 
 - [PEP 3333: Python Web Server Gateway Interface v1.0.1](https://knzm.readthedocs.io/en/latest/pep-3333-ja.html) 
 - [[Qiita] PEP 3333を日本語訳しました](https://qiita.com/sabigara/items/e02f7b08e7902427313a) 

 ## 調査結果 
 - 読まれ方 
   - ユーウィスキー 
   - ユーウィスギー 
   - ウエスギ、とも 
 - WSGI (Web Server Gateway Interface) を基本としたアプリケーションサーバ 
   - WSGI は、Python での Web サーバと Web アプリケーション (フレームワーク) 間のインタフェース定義 (PEP 3333) 
 - C言語で実装された高速なサーバ 
 - コンテナサーバとして(も?)提供されている 
 - Flask が開発中に使用されることを想定しているのに対し、uWSGI は実働に耐えるサーバ 
 - Webサーバの後ろに配置することも可能

戻る