1 | | = Trac を FastCGI で使用する = |
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 | | == 単純な Apache の設定 == |
6 | | |
7 | | Apache で利用可能な FastCGI モジュールは 2 種類あります: `mod_fastcgi` と |
8 | | `mod_fcgid` です。 これ以降に書かれている `FastCgiIpcDir` と `FastCgiConfig` ディレクティブ |
9 | | は `mod_fastcgi` のディレクティブです; `DefaultInitEnv` は `mod_fgcid` |
10 | | のディレクティブです。 |
11 | | |
12 | | `mod_fastcgi` では、 Apache の設定ファイルに以下の設定を追記します。 |
13 | | ファイル: |
| 1 | = Trac with FastCGI |
| 2 | |
| 3 | [[TracGuideToc]] |
| 4 | [[PageOutline(2-5, Contents, floated)]] |
| 5 | |
| 6 | [http://www.fastcgi.com/ FastCGI] interface allows Trac to remain resident much like with [wiki:TracModPython mod_python] or [wiki:TracModWSGI mod_wsgi]. It is faster than external CGI interfaces which must start a new process for each request. Additionally, it is supported by much wider variety of web servers. |
| 7 | |
| 8 | Note that unlike mod_python, FastCGI supports [http://httpd.apache.org/docs/suexec.html Apache SuEXEC], ie run with different permissions than the web server runs with. `mod_wsgi` supports the `WSGIDaemonProcess` with user / group parameters to achieve the same effect. |
| 9 | |
| 10 | '''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]/[trac:TracOnWindowsIisAjp ISAPI]. |
| 11 | |
| 12 | == Simple Apache configuration |
| 13 | |
| 14 | There are two FastCGI modules commonly available for Apache: `mod_fastcgi` and |
| 15 | `mod_fcgid` (preferred). The latter is more up-to-date. |
| 16 | |
| 17 | The following sections focus on the FCGI specific setup, see also [wiki:TracModWSGI#ConfiguringAuthentication] for configuring the authentication in Apache. |
| 18 | |
| 19 | Regardless of which cgi module is used, be sure the web server has executable permissions on the cgi-bin folder. While FastCGI will throw specific permissions errors, mod_fcgid will throw an ambiguous error if this has not been done. Connection reset by peer: mod_fcgid: error reading data from FastCGI server. |
| 20 | |
| 21 | === Set up with `mod_fastcgi` |
| 22 | |
| 23 | `mod_fastcgi` uses `FastCgiIpcDir` and `FastCgiConfig` directives that should be added to an appropriate Apache configuration file: |
60 | | プロジェクトごとの `ScriptAliases` と `.fcgi` スクリプトを設定すれば、 |
61 | | この方法を使用して複数のプロジェクトに対応することができます。 |
62 | | `trac.fcgi` をコピーして、ファイル名を適切に変更し、上記のコードをそれぞれのスクリプトに追記します。 |
63 | | |
64 | | == 単純な Lighttpd の設定 == |
65 | | |
66 | | FastCGI フロントエンドは最初 [http://www.lighttpd.net/ lighttpd] のような、 Apache 以外の Web サーバのために開発されました。 |
67 | | |
68 | | lighttpd はセキュアで高速で、規格に準拠したとても柔軟な Web サーバで、高いパフォーマンスの環境で最適化されます。 |
69 | | 他の Web サーバに比べて CPU や、メモリの占有率がとても少ないです。 |
70 | | |
71 | | `trac.fcgi` を lighttpd で使用するためには、 lighttpd.conf に以下の行を追加します: |
72 | | {{{ |
| 76 | With this method different projects can be supported by using different `.fcgi` scripts with different `ScriptAliases`. |
| 77 | |
| 78 | See [https://coderanger.net/~coderanger/httpd/fcgi_example.conf this fcgid example config] which uses a !ScriptAlias directive with trac.fcgi with a trailing / like this: |
| 79 | {{{ |
| 80 | ScriptAlias / /srv/tracsite/cgi-bin/trac.fcgi/ |
| 81 | }}} |
| 82 | |
| 83 | == Simple Cherokee Configuration |
| 84 | |
| 85 | The configuration on Cherokee's side is quite simple. You will only need to know that you can spawn Trac as an SCGI process. |
| 86 | You can either start it manually, or better yet, automatically by letting Cherokee spawn the server whenever it is down. |
| 87 | First set up an information source in cherokee-admin with a local interpreter: |
| 88 | |
| 89 | {{{ |
| 90 | Host: |
| 91 | localhost:4433 |
| 92 | |
| 93 | Interpreter: |
| 94 | /usr/bin/tracd —single-env —daemonize —protocol=scgi —hostname=localhost —port=4433 /path/to/project/ |
| 95 | }}} |
| 96 | |
| 97 | 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''. |
| 98 | |
| 99 | 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. |
| 100 | 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 ''/common'' and just set it to the ''Static files'' handler and with a ''Document root'' that points to the appropriate files: ''$TRAC_LOCAL/htdocs/'' (where $TRAC_LOCAL is a directory defined by the user or the system administrator to place local trac resources). |
| 101 | |
| 102 | Note:\\ |
| 103 | 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.\\ |
| 104 | Python-flup is a dependency which provides trac with SCGI capability. You can install it on debian based systems with: |
| 105 | {{{ |
| 106 | sudo apt-get install python-flup |
| 107 | }}} |
| 108 | |
| 109 | == Simple Lighttpd Configuration |
| 110 | |
| 111 | The FastCGI front-end was developed primarily for use with alternative webservers, such as [http://www.lighttpd.net/ Lighttpd]. |
| 112 | |
| 113 | Lighttpd is a secure, fast, compliant and very flexible web-server that has been optimized for high-performance environments. It has a very low memory footprint compared to other web servers and takes care of CPU load. |
| 114 | |
| 115 | For using `trac.fcgi`(prior to 0.11) / fcgi_frontend.py (0.11) with Lighttpd add the following to your lighttpd.conf: |
| 116 | {{{ |
| 117 | #var.fcgi_binary="/usr/bin/python /path/to/fcgi_frontend.py" # 0.11 if installed with easy_setup, it is inside the egg directory |
| 118 | var.fcgi_binary="/path/to/cgi-bin/trac.fcgi" # 0.10 name of prior fcgi executable |
111 | | 各フィールドの値が異なることに注意して下さい。もし `.fcgi` スクリプトに |
112 | | 環境変数を設定するほうが好ましい場合は、 `trac.fcgi` をコピー / 名前変更をして下さい。例として、 |
113 | | `first.fcgi` と `second.fcgi` が上記の設定では参照されるようにします。 |
114 | | 上記の設定で、両方のプロジェクトが 同じ `trac.fcgi` スクリプトで起動していても、 |
115 | | 異なるプロセスになることに注意して下さい。 |
116 | | {{{ |
117 | | #!html |
118 | | <p style="background: #fdc; border: 2px solid #d00; font-style: italic; padding: 0 .5em; margin: 1em 0;"> |
119 | | <strong>Note from c00i90wn:</strong> server.modules をロードする順番はとても重要です。もし、 mod_auth が mod_fastcgi より <strong> 先に </strong> ロードされる設定になっていない場合、サーバはユーザの認証に失敗します。 |
120 | | </p> |
121 | | }}} |
122 | | 認証のために lighttpd.conf の 'server.modules' 中で mod_auth を有効にして、 auth.backend と認証方法を選択して下さい: |
| 158 | |
| 159 | Note that field values are different. If you prefer setting the environment variables in the `.fcgi` scripts, then copy/rename `trac.fcgi`, eg to `first.fcgi` and `second.fcgi`, and reference them in the above settings. |
| 160 | Note that the above will result in different processes in any event, even if both are running from the same `trac.fcgi` script. |
| 161 | |
| 162 | {{{ |
| 163 | #!div class=important |
| 164 | '''Note''' It's very important the order on which server.modules are loaded, if mod_auth is not loaded '''BEFORE''' mod_fastcgi, then the server will fail to authenticate the user. |
| 165 | }}} |
| 166 | |
| 167 | For authentication you should enable mod_auth in lighttpd.conf 'server.modules', select auth.backend and auth rules: |
233 | | 使用言語指定の詳細については [http://trac.lighttpd.net/trac/wiki/TracFaq TracFaq] の 2.13 の質問を参照して下さい。 |
234 | | |
235 | | その他重要な情報、例えば、 [http://trac.lighttpd.net/trac/wiki/TracInstall lighttpd の TracInstall] や、 [wiki:TracCgi#静的なリソースをマッピングする TracCgi] などは fast-cgi 固有ではありませんが、インストールの詳細をつかむのに有用でしょう。 |
236 | | |
237 | | trac-0.9 を使用している場合、[http://lists.edgewall.com/archive/trac/2005-November/005311.html 些細なバグ] について読んでください。 |
238 | | |
239 | | lighttpd を再起動し、ブラウザに `http://yourhost.example.org/trac` を入力して、 Trac にアクセスして下さい。 |
240 | | |
241 | | 制限された権限で lighttpd を起動するにあたって気をつけること: |
242 | | |
243 | | もし、 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 を起動するユーザに適宜読み替えてください。) |
244 | | |
245 | | |
246 | | == 簡単な [http://trac.edgewall.org/wiki/LiteSpeed LiteSpeeed] の設定 == |
247 | | |
248 | | FastCGI フロントエンドは最初 [http://www.litespeedtech.com/ LiteSpeed] のような、 Apache 以外の Web サーバのために開発されました。 |
249 | | |
250 | | [http://trac.edgewall.org/wiki/LiteSpeed LiteSpeed] Web サーバはイベント駆動、非同期型であり、Apache に代わるものとしてセキュアで拡張可能になるようにゼロからデザインされています。そして、最低限のリソースで操作できます。 [http://trac.edgewall.org/wiki/LiteSpeed LiteSpeed] は Apache の設定ファイルから直接操作でき、ビジネスに不可欠な環境をターゲットにしています。 |
251 | | |
252 | | セットアップ |
253 | | |
254 | | 1) 最初に Trac プロジェクトをインストールして動作することを確認して下さい。最初のインストールでは、 "tracd" を使用します。 |
255 | | |
256 | | 2) このセットアップでは仮想ホストを作成します。以下、この仮想ホストのことを !TracVhost と呼びます。このチュートリアルで、先ほど作ったプロジェクトが以下の URL 経由でアクセスできると仮定します: |
257 | | |
| 278 | For details about languages specification see [trac:TracFaq TracFaq] question 2.13. |
| 279 | |
| 280 | Other important information like the [wiki:TracInstall#MappingStaticResources mapping static resources advices] are useful for non-fastcgi specific installation aspects. |
| 281 | ] |
| 282 | |
| 283 | Relaunch Lighttpd and browse to `http://yourhost.example.org/trac` to access Trac. |
| 284 | |
| 285 | Note about running Lighttpd with reduced permissions: 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. |
| 286 | |
| 287 | == Simple !LiteSpeed Configuration |
| 288 | |
| 289 | The FastCGI front-end was developed primarily for use with alternative webservers, such as [http://www.litespeedtech.com/ LiteSpeed]. |
| 290 | |
| 291 | !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. |
| 292 | |
| 293 | 1. Please make sure you have a working install of a Trac project. Test install with "tracd" first. |
| 294 | |
| 295 | 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: |
| 350 | == Simple Nginx Configuration |
| 351 | |
| 352 | Nginx is able to communicate with FastCGI processes, but can not spawn them. So you need to start FastCGI server for Trac separately. |
| 353 | |
| 354 | 1. Nginx configuration with basic authentication handled by Nginx - confirmed to work on 0.6.32 |
| 355 | {{{ |
| 356 | server { |
| 357 | listen 10.9.8.7:443; |
| 358 | server_name trac.example; |
| 359 | |
| 360 | ssl on; |
| 361 | ssl_certificate /etc/ssl/trac.example.crt; |
| 362 | ssl_certificate_key /etc/ssl/trac.example.key; |
| 363 | |
| 364 | ssl_session_timeout 5m; |
| 365 | |
| 366 | ssl_protocols SSLv2 SSLv3 TLSv1; |
| 367 | ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP; |
| 368 | ssl_prefer_server_ciphers on; |
| 369 | |
| 370 | # it makes sense to serve static resources through Nginx (or ``~ [/some/prefix]/chrome/(.*)``) |
| 371 | location ~ /chrome/(.*) { |
| 372 | alias /home/trac/instance/static/htdocs/$1; |
| 373 | } |
| 374 | |
| 375 | # You can copy this whole location to ``location [/some/prefix](/login)`` |
| 376 | # and remove the auth entries below if you want Trac to enforce |
| 377 | # authorization where appropriate instead of needing to authenticate |
| 378 | # for accessing the whole site. |
| 379 | # (Or ``~ location /some/prefix(/.*)``.) |
| 380 | location ~ (/.*) { |
| 381 | auth_basic "trac realm"; |
| 382 | auth_basic_user_file /home/trac/htpasswd; |
| 383 | |
| 384 | # socket address |
| 385 | fastcgi_pass unix:/home/trac/run/instance.sock; |
| 386 | |
| 387 | # python - wsgi specific |
| 388 | fastcgi_param HTTPS on; |
| 389 | |
| 390 | ## WSGI REQUIRED VARIABLES |
| 391 | # WSGI application name - trac instance prefix. |
| 392 | # (Or ``fastcgi_param SCRIPT_NAME /some/prefix``.) |
| 393 | fastcgi_param SCRIPT_NAME ""; |
| 394 | fastcgi_param PATH_INFO $1; |
| 395 | |
| 396 | ## WSGI NEEDED VARIABLES - trac warns about them |
| 397 | fastcgi_param REQUEST_METHOD $request_method; |
| 398 | fastcgi_param SERVER_NAME $server_name; |
| 399 | fastcgi_param SERVER_PORT $server_port; |
| 400 | fastcgi_param SERVER_PROTOCOL $server_protocol; |
| 401 | fastcgi_param QUERY_STRING $query_string; |
| 402 | |
| 403 | # For Nginx authentication to work - do not forget to comment these |
| 404 | # lines if not using Nginx for authentication |
| 405 | fastcgi_param AUTH_USER $remote_user; |
| 406 | fastcgi_param REMOTE_USER $remote_user; |
| 407 | |
| 408 | # for ip to work |
| 409 | fastcgi_param REMOTE_ADDR $remote_addr; |
| 410 | |
| 411 | # For attchments to work |
| 412 | fastcgi_param CONTENT_TYPE $content_type; |
| 413 | fastcgi_param CONTENT_LENGTH $content_length; |
| 414 | } |
| 415 | } |
| 416 | }}} |
| 417 | 1. Modified trac.fcgi: |
| 418 | {{{ |
| 419 | #!/usr/bin/env python |
| 420 | import os |
| 421 | sockaddr = '/home/trac/run/instance.sock' |
| 422 | os.environ['TRAC_ENV'] = '/home/trac/instance' |
| 423 | |
| 424 | try: |
| 425 | from trac.web.main import dispatch_request |
| 426 | import trac.web._fcgi |
| 427 | |
| 428 | fcgiserv = trac.web._fcgi.WSGIServer(dispatch_request, |
| 429 | bindAddress = sockaddr, umask = 7) |
| 430 | fcgiserv.run() |
| 431 | |
| 432 | except SystemExit: |
| 433 | raise |
| 434 | except Exception, e: |
| 435 | print 'Content-Type: text/plain\r\n\r\n', |
| 436 | print 'Oops...' |
| 437 | print |
| 438 | print 'Trac detected an internal error:' |
| 439 | print |
| 440 | print e |
| 441 | print |
| 442 | import traceback |
| 443 | import StringIO |
| 444 | tb = StringIO.StringIO() |
| 445 | traceback.print_exc(file=tb) |
| 446 | print tb.getvalue() |
| 447 | |
| 448 | }}} |
| 449 | 1. reload nginx and launch trac.fcgi like that: |
| 450 | {{{#!sh |
| 451 | trac@trac.example ~ $ ./trac-standalone-fcgi.py |
| 452 | }}} |
| 453 | |
| 454 | The above assumes that: |
| 455 | * There is a user named 'trac' for running trac instances and keeping trac environments in its home directory |
| 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`) |
| 460 | * and patch from ticket #T7239 is applied, or you'll have to fix the socket file permissions every time |
| 461 | |
| 462 | Unfortunately nginx does not support variable expansion in fastcgi_pass directive. |
| 463 | Thus it is not possible to serve multiple Trac instances from one server block. |
| 464 | |
| 465 | If you worry enough about security, run Trac instances under separate users. |
| 466 | |
| 467 | Another way to run Trac as a FCGI external application is offered in ticket #T6224 |
| 468 | |