macでuwsgiを動かしてテストページを表示してみた
mac にインストールして、試してみました。
インストールは pip を使います。
sudo pip install uwsgi
サンプル用の python ファイルを用意。
uwsgi の公式サイトにあるサンプルそのままですが。
hello.py みたいな名前で作成しました。
def application(env, start_response):
start_response('200 OK', [('Content-Type','text/html')])
return [b"Hello World"]
試しに実行してみる。
uwsgi --http :9090 --wsgi-file hello.py
あとは、プラウザから http://localhost:9090 にアクセスして、「Hello World」が表示されれば OK です。