1 | | = Trac を FastCGI で使用する = #TracwithFastCGI |
2 | | |
3 | | バージョン 0.9 以降、 Trac は [http://www.fastcgi.com/ FastCGI] インタフェースに対応するようになりました。 [wiki:TracModPython mod_python] 同様、 Trac を常駐させるため、外部の各リクエストに対して新しいプロセスを生成する CGI インタフェースよりも処理速度が速いです。その上 `mod_python` とは異なり [http://httpd.apache.org/docs/suexec.html SuEXEC] に対応することも可能です。また、より多くの種類の Web サーバにサポートされています。 |
4 | | |
5 | | '''Note for Windows:''' Trac's FCGI does not run under Windows, as Windows does not implement `Socket.fromfd`, which is used by `_fcgi.py`. If you want to connect to IIS, your choice may be [trac:TracOnWindowsIisAjp AJP]. |
6 | | '''Windows 向けの Note:''' Trac の FCGI は Windows では使用できません。 `_fcgi.py` が必要とする `Socket.fromfd` が Windows では実装されていないためです。 IIS を使用しているのであれば、 [http://trac.edgewall.org/wiki/TracOnWindowsIisAjp AJP] を使うこともできます。 (訳注: Apache でも mod_proxy_ajp 経由で ajp を使用できます。) |
7 | | |
8 | | == 単純な Apache の設定 == #SimpleApacheconfiguration |
9 | | |
10 | | Apache で利用可能な FastCGI モジュールは 2 種類あります: `mod_fastcgi` と |
11 | | `mod_fcgid` です。これ以降に書かれている `FastCgiIpcDir` と `FastCgiConfig` ディレクティブ |
12 | | は `mod_fastcgi` のディレクティブです; `DefaultInitEnv` は `mod_fcgid` |
13 | | のディレクティブです。 |
14 | | |
15 | | `mod_fastcgi` では、 Apache の設定ファイルに以下の設定を追記します。 |
16 | | ファイル: |
| 1 | = Trac with FastCGI = |
| 2 | |
| 3 | [http://www.fastcgi.com/ FastCGI] interface allows Trac to remain resident much like with [wiki:TracModPython mod_python]. It is faster than external CGI interfaces which must start a new process for each request. However, unlike mod_python, FastCGI supports [http://httpd.apache.org/docs/suexec.html Apache SuEXEC], i.e. run with different permissions than web server. Additionally, it is supported by much wider variety of web servers. |
| 4 | |
| 5 | '''Note for Windows:''' Trac's FastCGI does not run under Windows, as Windows does not implement `Socket.fromfd`, which is used by `_fcgi.py`. If you want to connect to IIS, you may want to try [trac:TracOnWindowsIisAjp AJP]. |
| 6 | |
| 7 | == Simple Apache configuration == |
| 8 | |
| 9 | There are two FastCGI modules commonly available for Apache: `mod_fastcgi` and |
| 10 | `mod_fcgid` (preferred). The latter is more up-to-date. |
| 11 | |
| 12 | ==== setup with `mod_fastcgi` ==== |
| 13 | `mod_fastcgi` uses `FastCgiIpcDir` and `FastCgiConfig` directives that should be added to an appropriate Apache configuration file: |
27 | | デフォルトの設定に問題がなければ、 `FastCgiIpcDir` の設定は必須ではありません。 `LoadModule` の行は `IfModule` グループの後になければいけないことに注意して下さい。 |
28 | | |
29 | | `ScriptAlias` を設定するもしくは似たオプションが TracCgi で説明されていますが、 |
30 | | `trac.cgi` の代わりに `trac.fcgi` を呼びます。 |
31 | | |
32 | | `TRAC_ENV` を以下のように設定することができます: |
| 24 | Setting `FastCgiIpcDir` is optional if the default is suitable. Note that the `LoadModule` line must be after the `IfModule` group. |
| 25 | |
| 26 | Configure `ScriptAlias` or similar options as described in TracCgi, but |
| 27 | calling `trac.fcgi` instead of `trac.cgi`. |
| 28 | |
| 29 | You can set up the `TRAC_ENV` as an overall default: |
42 | | これらの設定は、 `mod_fcgid` では動きません。似ていますが |
43 | | `mod_fcgid` での部分的な解決策は以下の通りになります: |
| 39 | ==== setup with `mod_fcgid` ==== |
| 40 | Configure `ScriptAlias` (see TracCgi for details), but call `trac.fcgi` |
| 41 | instead of `trac.cgi`. Note that slash at the end - it is important. |
| 42 | {{{ |
| 43 | ScriptAlias /trac /path/to/www/trac/cgi-bin/trac.fcgi/ |
| 44 | }}} |
| 45 | |
| 46 | To setup Trac environment for `mod_fcgid` it is necessary to use |
| 47 | `DefaultInitEnv` directive. It cannot be used in `Directory` or |
| 48 | `Location` context, so if you need to support multiple projects, try |
| 49 | alternative environment setup below. |
| 50 | |
47 | | しかし、これは `Directory` や `Location` コンテキストで使用することができません。 |
48 | | よって、複数のプロジェクトに対応するのは難しくなります。 |
49 | | |
50 | | これらのモジュールの両方 (同様に [http://www.lighttpd.net/ lighttpd] と CGI も) で動かすよりよい方法は、 |
51 | | `trac.fcgi` に以下の値を設定することです。 |
52 | | Web サーバに環境変数を設定する必要がなくなります。例: |
| 54 | |
| 55 | ==== alternative environment setup ==== |
| 56 | A better method to specify path to Trac environment it to embed the path |
| 57 | into `trac.fcgi` script itself. That doesn't require configuration of server |
| 58 | environment variables, works for both FastCgi modules |
| 59 | (and for [http://www.lighttpd.net/ lighttpd] and CGI as well): |
74 | | Configuration wanted. |
75 | | |
76 | | == 単純な Lighttpd の設定 == #SimpleLighttpdConfiguration |
77 | | |
78 | | FastCGI フロントエンドは最初 [http://www.lighttpd.net/ lighttpd] のような、 Apache 以外の Web サーバのために開発されました。 |
79 | | |
80 | | lighttpd はセキュアで高速で、規格に準拠したとても柔軟な Web サーバで、高いパフォーマンスの環境で最適化されます。 |
81 | | 他の Web サーバに比べて CPU や、メモリの占有率がとても少ないです。 |
82 | | |
83 | | `trac.fcgi` (0.11 より前) もしくは fcgi_frontend.py (0.11) を lighttpd で使用するためには、 lighttpd.conf に以下の行を追加します: |
84 | | {{{ |
85 | | #var.fcgi_binary="/path/to/fcgi_frontend.py" # 0.11 if installed with easy_setup, it is inside the egg directory |
| 80 | The configuration on Cherokee's side is quite simple. You will only need to know that you can spawn Trac as an SCGI process. |
| 81 | You can either start it manually, or better yet, automatically by letting Cherokee spawn the server whenever it is down. |
| 82 | First set up an information source in cherokee-admin with a local interpreter. |
| 83 | |
| 84 | {{{ |
| 85 | Host: |
| 86 | localhost:4433 |
| 87 | |
| 88 | Interpreter: |
| 89 | /usr/bin/tracd —single-env —daemonize —protocol=scgi —hostname=localhost —port=4433 /path/to/project/ |
| 90 | }}} |
| 91 | |
| 92 | If the port was not reachable, the interpreter command would be launched. Note that, in the definition of the information source, you will have to manually launch the spawner if you use a ''Remote host'' as ''Information source'' instead of a ''Local interpreter''. |
| 93 | |
| 94 | After doing this, we will just have to create a new rule managed by the SCGI handler to access Trac. It can be created in a new virtual server, trac.example.net for instance, and will only need two rules. The '''default''' one will use the SCGI handler associated to the previously created information source. |
| 95 | The second rule will be there to serve the few static files needed to correctly display the Trac interface. Create it as ''Directory rule'' for ''/chrome/common'' and just set it to the ''Static files'' handler and with a ''Document root'' that points to the appropriate files: ''/usr/share/trac/htdocs/'' |
| 96 | |
| 97 | Note:\\ |
| 98 | If the tracd process fails to start up, and cherokee displays a 503 error page, you might be missing the [http://trac.saddi.com/flup python-flup] package.\\ |
| 99 | Python-flup is a dependency which provides trac with SCGI capability. You can install it on debian based systems with: |
| 100 | {{{ |
| 101 | sudo apt-get install python-flup |
| 102 | }}} |
| 103 | |
| 104 | == Simple Lighttpd Configuration == |
| 105 | |
| 106 | The FastCGI front-end was developed primarily for use with alternative webservers, such as [http://www.lighttpd.net/ lighttpd]. |
| 107 | |
| 108 | lighttpd is a secure, fast, compliant and very flexible web-server that has been optimized for high-performance |
| 109 | environments. It has a very low memory footprint compared to other web servers and takes care of CPU load. |
| 110 | |
| 111 | For using `trac.fcgi`(prior to 0.11) / fcgi_frontend.py (0.11) with lighttpd add the following to your lighttpd.conf: |
| 112 | {{{ |
| 113 | #var.fcgi_binary="/usr/bin/python /path/to/fcgi_frontend.py" # 0.11 if installed with easy_setup, it is inside the egg directory |
100 | | 動かしたい Trac のインスタンス毎に `fastcgi.server` のエントリを追加する必要があります。別の方法として、、上記の `TRAC_ENV` の代わりに `TRAC_ENV_PARENT_DIR` を使用でき、 |
101 | | `lighttpd.conf` に設定する代わりに `trac.fcgi` ファイルに |
102 | | `bin-environment` (上記の Apache の設定 に書かれています) の2つのうちのどちらかを設定します。 |
103 | | |
104 | | lighttpd で2つのプロジェクトを動かすには、 `lighttpd.conf` に以下の設定を追加します: |
| 128 | Note that you will need to add a new entry to `fastcgi.server` for each separate Trac instance that you wish to run. Alternatively, you may use the `TRAC_ENV_PARENT_DIR` variable instead of `TRAC_ENV` as described above, |
| 129 | and you may set one of the two in `trac.fcgi` instead of in `lighttpd.conf` |
| 130 | using `bin-environment` (as in the section above on Apache configuration). |
| 131 | |
| 132 | Note that lighttpd has a bug related to 'SCRIPT_NAME' and 'PATH_INFO' when the uri of fastcgi.server is '/' instead of '/trac' in this example, see #Trac2418. This should be fixed since lighttpd 1.4.23, and you may need to add `"fix-root-scriptname" => "enable"` as parameter of fastcgi.server. |
| 133 | |
| 134 | For using two projects with lighttpd add the following to your `lighttpd.conf`: |
126 | | 各フィールドの値が異なることに注意して下さい。もし `.fcgi` スクリプトに |
127 | | 環境変数を設定するほうが好ましい場合は、 `trac.fcgi` をコピー/名前変更をして下さい。例として、 |
128 | | `first.fcgi` と `second.fcgi` が上記の設定では参照されるようにします。 |
129 | | 上記の設定で、両方のプロジェクトが 同じ `trac.fcgi` スクリプトで起動していても、 |
130 | | 異なるプロセスになることに注意して下さい。 |
| 156 | Note that field values are different. If you prefer setting the environment |
| 157 | variables in the `.fcgi` scripts, then copy/rename `trac.fcgi`, e.g., to |
| 158 | `first.fcgi` and `second.fcgi`, and reference them in the above settings. |
| 159 | Note that the above will result in different processes in any event, even |
| 160 | if both are running from the same `trac.fcgi` script. |
246 | | 使用言語指定の詳細については [http://trac.lighttpd.net/trac/wiki/TracFaq TracFaq] の 2.13 の質問を参照して下さい。 |
247 | | |
248 | | その他重要な情報、例えば、 [http://trac.lighttpd.net/trac/wiki/TracInstall lighttpd の TracInstall] や、 [wiki:TracCgi#静的なリソースをマッピングする TracCgi] などは fast-cgi 固有ではありませんが、インストールの詳細をつかむのに有用でしょう。 |
249 | | |
250 | | trac-0.9 を使用している場合、[http://lists.edgewall.com/archive/trac/2005-November/005311.html 些細なバグ] について読んでください。 |
251 | | |
252 | | lighttpd を再起動し、ブラウザに `http://yourhost.example.org/trac` を入力して、 Trac にアクセスして下さい。 |
253 | | |
254 | | 制限された権限で lighttpd を起動するにあたって気をつけること: |
255 | | |
256 | | もし、 trac.fcgi が lighttpd の設定で __server.username = "www-data"__ や __server.groupname = "www-data"__ を設定しても起動せずどうしようもないときは、 `bin-environment` セクションの `PYTHON_EGG_CACHE` を `www-data` のホームディレクトリまたは `www-data` アカウントで書き込みが可能なディレクトリに設定して下さい。 (訳注: debian 系 Linux に限定した話だと思われます。 `www-data` は lighttpd を起動するユーザに適宜読み替えてください。) |
257 | | |
258 | | |
259 | | == 簡単な !LiteSpeeed の設定 == #SimpleLiteSpeedConfiguration |
260 | | |
261 | | FastCGI フロントエンドは [http://www.litespeedtech.com/ LiteSpeed] のような、 Apache 以外の Web サーバのために開発されました。 |
262 | | |
263 | | !LiteSpeed Web サーバはイベント駆動、非同期型であり、Apache に代わるものとしてセキュアで拡張可能になるようにゼロからデザインされています。そして、最低限のリソースで操作できます。 !LiteSpeed は Apache の設定ファイルから直接操作でき、ビジネスに不可欠な環境をターゲットにしています。 |
264 | | |
265 | | セットアップ |
266 | | |
267 | | 1) 最初に Trac プロジェクトをインストールして動作することを確認して下さい。最初のインストールでは、 "tracd" を使用します。 |
268 | | |
269 | | 2) このセットアップでは仮想ホストを作成します。以下、この仮想ホストのことを !TracVhost と呼びます。このチュートリアルで、先ほど作ったプロジェクトが以下の URL 経由でアクセスできると仮定します: |
| 276 | For details about languages specification see [trac:TracFaq TracFaq] question 2.13. |
| 277 | |
| 278 | Other important information like [http://trac.lighttpd.net/trac/wiki/TracInstall this updated TracInstall page], [wiki:TracCgi#MappingStaticResources and this] are useful for non-fastcgi specific installation aspects. |
| 279 | |
| 280 | If you use trac-0.9, read [http://lists.edgewall.com/archive/trac/2005-November/005311.html about small bug] |
| 281 | |
| 282 | Relaunch lighttpd, and browse to `http://yourhost.example.org/trac` to access Trac. |
| 283 | |
| 284 | Note about running lighttpd with reduced permissions: |
| 285 | |
| 286 | If nothing else helps and trac.fcgi doesn't start with lighttpd settings `server.username = "www-data"`, `server.groupname = "www-data"`, then in the `bin-environment` section set `PYTHON_EGG_CACHE` to the home directory of `www-data` or some other directory accessible to this account for writing. |
| 287 | |
| 288 | |
| 289 | == Simple !LiteSpeed Configuration == |
| 290 | |
| 291 | The FastCGI front-end was developed primarily for use with alternative webservers, such as [http://www.litespeedtech.com/ LiteSpeed]. |
| 292 | |
| 293 | !LiteSpeed web server is an event-driven asynchronous Apache replacement designed from the ground-up to be secure, scalable, and operate with minimal resources. !LiteSpeed can operate directly from an Apache config file and is targeted for business-critical environments. |
| 294 | |
| 295 | === Setup === |
| 296 | |
| 297 | 1. Please make sure you have first have a working install of a Trac project. Test install with “tracd” first. |
| 298 | |
| 299 | 2. Create a Virtual Host for this setup. From now on we will refer to this vhost as !TracVhost. For this tutorial we will be assuming that your trac project will be accessible via: |
425 | | * /home/trac/instance contains a trac environment |
426 | | * /home/trac/htpasswd contains authentication information |
427 | | * /home/trac/run is owned by the same group the nginx runs under |
428 | | * and if your system is Linux the /home/trac/run has setgid bit set (chmod g+s run) |
| 456 | * `/home/trac/instance` contains a trac environment |
| 457 | * `/home/trac/htpasswd` contains authentication information |
| 458 | * `/home/trac/run` is owned by the same group the nginx runs under |
| 459 | * and if your system is Linux the `/home/trac/run` has setgid bit set (`chmod g+s run`) |