「UWSGI」の版間の差分

提供: ArchWiki
ナビゲーションに移動 検索に移動
(→‎サービスの起動: 英語版より記述を追加)
(→‎設定: 英語版より転載)
30行目: 30行目:
   
 
== 設定 ==
 
== 設定 ==
  +
  +
{{Note|It seems /etc/uwsgi/archlinux.ini is not shipped with the standard install.}}
   
 
{{ic|/etc/uwsgi/}} 内のファイルを編集することで設定ができます。パッケージに含まれているビルドファイルは {{ic|/etc/uwsgi/archlinux.ini}} に存在します。
 
{{ic|/etc/uwsgi/}} 内のファイルを編集することで設定ができます。パッケージに含まれているビルドファイルは {{ic|/etc/uwsgi/archlinux.ini}} に存在します。
   
 
詳しくは [http://uwsgi-docs.readthedocs.org/en/latest/ uwsgi のドキュメント] を見て下さい。
 
詳しくは [http://uwsgi-docs.readthedocs.org/en/latest/ uwsgi のドキュメント] を見て下さい。
  +
  +
{{Note|Please refer to the following resource for the full list of all options: http://uwsgi-docs.readthedocs.org/en/latest/Options.html}}
   
 
===== アプリケーションの設定 =====
 
===== アプリケーションの設定 =====
45行目: 49行目:
   
 
以下のような構文を使うことで uwsgi を別個に実行することも可能です:
 
以下のような構文を使うことで uwsgi を別個に実行することも可能です:
  +
  +
{{Note|It seems --wsgi-file option is not available from uwsgi installed through pacman. Official guides suggest building from sources (see http://uwsgi-docs.readthedocs.org/en/latest/WSGIquickstart.html#installing-uwsgi-with-python-support).}}
   
 
uwsgi --socket 127.0.0.1:3031 --plugin python2 --wsgi-file ~/foo.py --master --processes 4 --threads 2 --stats 127.0.0.1:9191 --uid --gid
 
uwsgi --socket 127.0.0.1:3031 --plugin python2 --wsgi-file ~/foo.py --master --processes 4 --threads 2 --stats 127.0.0.1:9191 --uid --gid
50行目: 56行目:
 
上記のコマンドを root で実行するのは止めてください。
 
上記のコマンドを root で実行するのは止めてください。
   
  +
==== Php applications ====
  +
Install the php plugin for uwsgi: {{Pkg|uwsgi-plugin-php}}
  +
  +
{{hc|/etc/uwsgi/mysite.ini|<nowiki>
  +
[uwsgi]
  +
; maximum number of worker processes
  +
processes = 4
  +
; the user and group id of the process once it’s started
  +
uid = http
  +
gid = http
  +
socket = /run/uwsgi/%n.sock
  +
master = true
  +
chdir = /srv/http/%n
  +
; php
  +
plugins = php
  +
; jail our php environment
  +
php-docroot = /srv/http/%n
  +
php-index = index.php
  +
; clear environment on exit
  +
vacuum = true
  +
</nowiki>}}
 
===== Nginx の設定 =====
 
===== Nginx の設定 =====
   

2015年12月25日 (金) 16:15時点における版

Uwsgi は高速で自己回復機能のある、開発者とシステム管理人に優しいアプリケーションコンテナサーバーです。C だけで書かれています。

インストール

公式リポジトリuwsgi パッケージをインストールしてください。パッケージをコンパクトにするために、プラグインは付属していません。外部プラグインは別にインストールする必要があります。C で書かれているためとても効率的なソフトウェアです。gunicorn など Python で書かれた代替も存在しますが、どうしても動作は遅くなってしまいます。

サービスの起動

ノート: In the most simple configuration each application (i.e. python application) will get its own instance of uwsgi service.

Before uwsgi service can be enabled/started a configuration file with the same name must be created within /etc/uwsgi/

When reading following lines assume that /etc/uwsgi/helloworld.ini was created.
この記事あるいはセクションで使われている用語や表現には問題が存在します。
議論: does not comply with Help:Style#systemd units operations (議論: トーク:UWSGI#)

スタートアップ時にデフォルトで uwsgi サービスを有効にするには、次を実行:

# systemctl enable uwsgi@helloworld

これで /etc/uwsgi/helloworld.ini 設定されたアプリケーションのサービスが有効になります。また、以下のコマンドを使ってソケットインターフェイスで有効にすることも可能です:

# systemctl enable uwsgi@helloworld.socket

もしくは、Emperor モード サービスを実行することができます。このモードを使うと uwsgi インスタンスで (emperor と呼ばれる) メインスーパーバイザーを使って様々なアプリ (vassal と呼ばれます) が動くようになります。有効にするには、次を入力:

# systemctl enable emperor.uwsgi

ソケットを使うこともできます:

# systemctl enable emperor.uwsgi.socket

Emperor の設定は /etc/uwsgi/emperor.ini にあります。

設定

ノート: It seems /etc/uwsgi/archlinux.ini is not shipped with the standard install.

/etc/uwsgi/ 内のファイルを編集することで設定ができます。パッケージに含まれているビルドファイルは /etc/uwsgi/archlinux.ini に存在します。

詳しくは uwsgi のドキュメント を見て下さい。

ノート: Please refer to the following resource for the full list of all options: http://uwsgi-docs.readthedocs.org/en/latest/Options.html
アプリケーションの設定

以下は python をサポートするシンプルな例です。pacman で community リポジトリから uwsgi-plugin-python または uwsgi-plugin-python2 プラグインをインストールする必要があります。

[uwsgi]
chdir = /srv/http/helloworld
module = helloworld
plugins = python

以下のような構文を使うことで uwsgi を別個に実行することも可能です:

ノート: It seems --wsgi-file option is not available from uwsgi installed through pacman. Official guides suggest building from sources (see http://uwsgi-docs.readthedocs.org/en/latest/WSGIquickstart.html#installing-uwsgi-with-python-support).
uwsgi --socket 127.0.0.1:3031 --plugin python2 --wsgi-file ~/foo.py --master --processes 4 --threads 2 --stats 127.0.0.1:9191 --uid --gid

上記のコマンドを root で実行するのは止めてください。

Php applications

Install the php plugin for uwsgi: uwsgi-plugin-php

/etc/uwsgi/mysite.ini
[uwsgi]
; maximum number of worker processes
processes = 4
; the user and group id of the process once it’s started
uid = http
gid = http
socket = /run/uwsgi/%n.sock
master = true
chdir = /srv/http/%n
; php
plugins = php
; jail our php environment
php-docroot = /srv/http/%n
php-index = index.php
; clear environment on exit
vacuum = true
Nginx の設定
location / {
    root   /usr/share/nginx/html;
    index  index.html index.htm;
    include uwsgi_params;
    # uwsgi_pass unix:/var/run/uwsgi/helloworld.sock;
    uwsgi_pass 127.0.0.1:3031;
}

参照