Changes between Initial Version and Version 1 of TracFastCgi


Ignore:
Timestamp:
Nov 17, 2012, 6:20:07 PM (12 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TracFastCgi

    v1 v1  
     1= Trac を FastCGI で使用する = #TracwithFastCGI
     2
     3[http://www.fastcgi.com/ FastCGI] インタフェースを使用すると [wiki:TracModPython mod_python] 同様、 Trac を常駐させることができます。そのため、外部の各リクエストに対して新しいプロセスを生成する CGI インタフェースよりも処理速度が速いうえに、 mod_python とは異なり [http://httpd.apache.org/docs/suexec.html SuEXEC] に対応しています (例えば、 Web サーバとは異なる権限で起動させることができます)。また、より多くの種類の Web サーバにサポートされています。
     4
     5'''Windows 向けの Note:''' Trac の FastCGI は Windows では使用できません。 `_fcgi.py` が必要とする `Socket.fromfd` が Windows では実装されていないためです。 IIS を使用しているのであれば、 [http://trac.edgewall.org/wiki/TracOnWindowsIisAjp AJP] を使うこともできます。 (訳注: Apache でも mod_proxy_ajp 経由で ajp を使用できます。)
     6
     7== 単純な Apache の設定 == #SimpleApacheconfiguration
     8
     9Apache で利用可能な FastCGI モジュールは 2 種類あります: `mod_fastcgi` と
     10`mod_fcgid` (推奨) です。後者の方がよりメンテナンスされています。
     11
     12==== `mod_fastcgi` でのセットアップ ==== #setupwithmod_fastcgi
     13`mod_fastcgi` では `FastCgiIpcDir` と `FastCgiConfig` ディレクティブを使用して Apache の設定ファイルに設定を行います:
     14{{{
     15# Enable fastcgi for .fcgi files
     16# (If you're using a distro package for mod_fcgi, something like
     17# this is probably already present)
     18<IfModule mod_fastcgi.c>
     19   AddHandler fastcgi-script .fcgi
     20   FastCgiIpcDir /var/lib/apache2/fastcgi
     21</IfModule>
     22LoadModule fastcgi_module /usr/lib/apache2/modules/mod_fastcgi.so
     23}}}
     24デフォルトの設定に問題がなければ、 `FastCgiIpcDir` の設定は必須ではありません。 `LoadModule` の行は `IfModule` グループの後になければいけないことに注意して下さい。
     25
     26`ScriptAlias` を設定するもしくは似たオプションが TracCgi で説明されていますが、
     27`trac.cgi` の代わりに `trac.fcgi` を呼びます。
     28
     29`TRAC_ENV` を以下のように設定することができます:
     30{{{
     31FastCgiConfig -initial-env TRAC_ENV=/path/to/env/trac
     32}}}
     33
     34もしくは複数の Trac プロジェクトを扱っているときは、このように設定します:
     35{{{
     36FastCgiConfig -initial-env TRAC_ENV_PARENT_DIR=/parent/dir/of/projects
     37}}}
     38
     39==== `mod_fcgid` でのセットアップ ==== #setupwithmod_fcgid
     40`ScriptAlias` を設定します。 (詳細は TracCgi を参照してください)、 ただし
     41`trac.cgi` の代わりに `trac.fcgi` を呼び出します。
     42Note: 最後のスラッシュを忘れずに。とても重要です。
     43{{{
     44ScriptAlias /trac /path/to/www/trac/cgi-bin/trac.fcgi/
     45}}}
     46
     47`mod_fcgid` で Trac environment を設定するには `FCGIDDefaultInitEnv`
     48ディレクティブを使用します。このディレクティブは `Direcotry` や `Location`
     49コンテキストで使用できないので、複数のプロジェクトを設定する場合、
     50下に記述する Environment を設定する別の方法を試してください。
     51
     52{{{
     53FCGIDDefaultInitEnv TRAC_ENV /path/to/env/trac/
     54}}}
     55
     56==== Environment を設定する別の方法 ==== #alternativeenvironmentsetup
     57Trac environment へのパスを設定するための、より適した方法は、パスを
     58`trac.fcgi` スクリプト自体に書き込むことです。これによってサーバの環境変数を
     59設定する必要がなくなり、どちらの !FastCgi モジュール (および
     60[http://www.lighttpd.net/ lighttpd] や CGI など) でも、動作するようになります:
     61{{{
     62import os
     63os.environ['TRAC_ENV'] = "/path/to/projectenv"
     64}}}
     65or
     66{{{
     67import os
     68os.environ['TRAC_ENV_PARENT_DIR'] = "/path/to/project/parent/dir"
     69}}}
     70
     71プロジェクトごとの `ScriptAliases` と `.fcgi` スクリプトを設定すれば、
     72この方法を使用して複数のプロジェクトに対応することができます。
     73
     74この [https://coderanger.net/~coderanger/httpd/fcgi_example.conf fcgid 設定例] を見たところ、 !ScriptAlias ディレクティブでは末尾の / も含めて、このように設定する:
     75{{{
     76ScriptAlias / /srv/tracsite/cgi-bin/trac.fcgi/
     77}}}
     78
     79== Simple Cherokee Configuration ==
     80
     81The configuration on Cherokee's side is quite simple. You will only need to know that you can spawn Trac as an SCGI process.
     82You can either start it manually, or better yet, automatically by letting Cherokee spawn the server whenever it is down.
     83First set up an information source in cherokee-admin with a local interpreter.
     84
     85{{{
     86Host:
     87localhost:4433
     88
     89Interpreter:
     90/usr/bin/tracd —single-env —daemonize —protocol=scgi —hostname=localhost —port=4433 /path/to/project/
     91}}}
     92
     93If 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''.
     94
     95After 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.
     96The 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/''
     97
     98== 単純な Lighttpd の設定 == #SimpleLighttpdConfiguration
     99
     100FastCGI フロントエンドは最初 [http://www.lighttpd.net/ lighttpd] のような、 Apache 以外の Web サーバのために開発されました。
     101
     102lighttpd はセキュアで高速で、規格に準拠したとても柔軟な Web サーバで、高いパフォーマンスの環境で最適化されます。
     103他の Web サーバに比べて CPU や、メモリの占有率がとても少ないです。
     104
     105`trac.fcgi` (0.11 より前) もしくは fcgi_frontend.py (0.11) を lighttpd で使用するためには、 lighttpd.conf に以下の行を追加します:
     106{{{
     107#var.fcgi_binary="/usr/bin/python /path/to/fcgi_frontend.py" # 0.11 if installed with easy_setup, it is inside the egg directory
     108var.fcgi_binary="/path/to/cgi-bin/trac.fcgi" # 0.10 name of prior fcgi executable
     109fastcgi.server = ("/trac" =>
     110   
     111                   ("trac" =>
     112                     ("socket" => "/tmp/trac-fastcgi.sock",
     113                      "bin-path" => fcgi_binary,
     114                      "check-local" => "disable",
     115                      "bin-environment" =>
     116                        ("TRAC_ENV" => "/path/to/projenv")
     117                     )
     118                   )
     119                 )
     120}}}
     121
     122動かしたい Trac のインスタンス毎に `fastcgi.server` のエントリを追加する必要があります。別の方法として、、上記の `TRAC_ENV` の代わりに `TRAC_ENV_PARENT_DIR` を使用でき、
     123`lighttpd.conf` に設定する代わりに `trac.fcgi` ファイルに
     124`bin-environment` (上記の Apache の設定 に書かれています) の2つのうちのどちらかを設定します。
     125
     126lighttpd で2つのプロジェクトを動かすには、 `lighttpd.conf` に以下の設定を追加します:
     127{{{
     128fastcgi.server = ("/first" =>
     129                   ("first" =>
     130                    ("socket" => "/tmp/trac-fastcgi-first.sock",
     131                     "bin-path" => fcgi_binary,
     132                     "check-local" => "disable",
     133                     "bin-environment" =>
     134                       ("TRAC_ENV" => "/path/to/projenv-first")
     135                    )
     136                  ),
     137                  "/second" =>
     138                    ("second" =>
     139                    ("socket" => "/tmp/trac-fastcgi-second.sock",
     140                     "bin-path" => fcgi_binary,
     141                     "check-local" => "disable",
     142                     "bin-environment" =>
     143                       ("TRAC_ENV" => "/path/to/projenv-second")
     144                    )
     145                  )
     146                )
     147}}}
     148各フィールドの値が異なることに注意して下さい。もし `.fcgi` スクリプトに
     149環境変数を設定するほうが好ましい場合は、 `trac.fcgi` をコピー/名前変更をして下さい。例として、
     150`first.fcgi` と `second.fcgi` が上記の設定では参照されるようにします。
     151上記の設定で、両方のプロジェクトが 同じ `trac.fcgi` スクリプトで起動していても、
     152異なるプロセスになることに注意して下さい。
     153{{{
     154#!div class=important
     155'''Note''' server.modules をロードする順番はとても重要です。 mod_auth が mod_fastcgi より '''先に''' ロードされる設定になっていない場合、サーバはユーザの認証に失敗します。
     156}}}
     157認証のために lighttpd.conf の 'server.modules' 中で mod_auth を有効にして、 auth.backend と認証方法を選択して下さい:
     158{{{
     159server.modules              = (
     160...
     161  "mod_auth",
     162...
     163)
     164
     165auth.backend               = "htpasswd"
     166
     167# Separated password files for each project
     168# See "Conditional Configuration" in
     169# http://trac.lighttpd.net/trac/file/branches/lighttpd-merge-1.4.x/doc/configuration.txt
     170
     171$HTTP["url"] =~ "^/first/" {
     172  auth.backend.htpasswd.userfile = "/path/to/projenv-first/htpasswd.htaccess"
     173}
     174$HTTP["url"] =~ "^/second/" {
     175  auth.backend.htpasswd.userfile = "/path/to/projenv-second/htpasswd.htaccess"
     176}
     177
     178# Enable auth on trac URLs, see
     179# http://trac.lighttpd.net/trac/file/branches/lighttpd-merge-1.4.x/doc/authentication.txt
     180
     181auth.require = ("/first/login" =>
     182                ("method"  => "basic",
     183                 "realm"   => "First project",
     184                 "require" => "valid-user"
     185                ),
     186                "/second/login" =>
     187                ("method"  => "basic",
     188                 "realm"   => "Second project",
     189                 "require" => "valid-user"
     190                )
     191               )
     192
     193
     194}}}
     195パスワードファイルがない場合、 lighttpd (確認したバージョンは 1.4.3) が停止するので注意して下さい。
     196
     197バージョン 1.3.16 以前では lighttpd は 'valid-user' をサポートしていないので注意してください。
     198
     199条件付の設定は静的リソースをマッピングするときに便利です。例として FastCGI を経由せずに直接イメージファイルや CSS を参照するときなどです。:
     200{{{
     201# Aliasing functionality is needed
     202server.modules += ("mod_alias")
     203
     204# Setup an alias for the static resources
     205alias.url = ("/trac/chrome/common" => "/usr/share/trac/htdocs")
     206
     207# Use negative lookahead, matching all requests that ask for any resource under /trac, EXCEPT in
     208# /trac/chrome/common, and use FastCGI for those
     209$HTTP["url"] =~ "^/trac(?!/chrome/common)" {
     210# Even if you have other fastcgi.server declarations for applications other than Trac, do NOT use += here
     211fastcgi.server = ("/trac" =>
     212                   ("trac" =>
     213                     ("socket" => "/tmp/trac-fastcgi.sock",
     214                      "bin-path" => fcgi_binary,
     215                      "check-local" => "disable",
     216                      "bin-environment" =>
     217                        ("TRAC_ENV" => "/path/to/projenv")
     218                     )
     219                   )
     220                 )
     221}
     222}}}
     223複数のプロジェクトのそれぞれにエイリアスを作れば、複数のプロジェクトを動かすのは技術的には簡単です。 fastcgi.server を条件ブロックの中で宣言しラッピングします。
     224複数のプロジェクトをハンドルするもう一つの方法があります。 TRAC_ENV_PARENT_DIR を TRAC_ENV の代わりに使用し、グローバルの認証機構を使用します。サンプルを見てみましょう:
     225{{{
     226#  This is for handling multiple projects
     227  alias.url       = ( "/trac/" => "/path/to/trac/htdocs/" )
     228
     229  fastcgi.server += ("/projects"  =>
     230                      ("trac" =>
     231                        (
     232                          "socket" => "/tmp/trac.sock",
     233                          "bin-path" => fcgi_binary,
     234                          "check-local" => "disable",
     235                          "bin-environment" =>
     236                            ("TRAC_ENV_PARENT_DIR" => "/path/to/parent/dir/of/projects/" )
     237                        )
     238                      )
     239                    )
     240#And here starts the global auth configuration
     241  auth.backend = "htpasswd"
     242  auth.backend.htpasswd.userfile = "/path/to/unique/htpassword/file/trac.htpasswd"
     243  $HTTP["url"] =~ "^/projects/.*/login$" {
     244    auth.require = ("/" =>
     245                     (
     246                       "method"  => "basic",
     247                       "realm"   => "trac",
     248                       "require" => "valid-user"
     249                     )
     250                   )
     251  }
     252}}}
     253
     254lighttpd では環境変数の LC_TIME を上書きして、日付/時間のフォーマットを変更することも出来ます。
     255{{{
     256fastcgi.server = ("/trac" =>
     257                   ("trac" =>
     258                     ("socket" => "/tmp/trac-fastcgi.sock",
     259                      "bin-path" => fcgi_binary,
     260                      "check-local" => "disable",
     261                      "bin-environment" =>
     262                        ("TRAC_ENV" => "/path/to/projenv",
     263                        "LC_TIME" => "ru_RU")
     264                     )
     265                   )
     266                 )
     267}}}
     268使用言語指定の詳細については [http://trac.lighttpd.net/trac/wiki/TracFaq TracFaq] の 2.13 の質問を参照して下さい。
     269
     270その他重要な情報、例えば、 [http://trac.lighttpd.net/trac/wiki/TracInstall lighttpd の TracInstall] や、 [wiki:TracCgi#静的なリソースをマッピングする TracCgi] などは fast-cgi 固有ではありませんが、インストールの詳細をつかむのに有用でしょう。
     271
     272trac-0.9 を使用している場合、[http://lists.edgewall.com/archive/trac/2005-November/005311.html 些細なバグ] について読んでください。
     273
     274lighttpd を再起動し、ブラウザに `http://yourhost.example.org/trac` を入力して、 Trac にアクセスして下さい。
     275
     276制限された権限で lighttpd を起動するにあたって気をつけること:
     277
     278  もし、 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 を起動するユーザに適宜読み替えてください。)
     279
     280
     281== 簡単な !LiteSpeeed の設定 == #SimpleLiteSpeedConfiguration
     282
     283FastCGI フロントエンドは [http://www.litespeedtech.com/ LiteSpeed] のような、 Apache 以外の Web サーバのために開発されました。
     284
     285!LiteSpeed Web サーバはイベント駆動、非同期型であり、Apache に代わるものとしてセキュアで拡張可能になるようにゼロからデザインされています。そして、最低限のリソースで操作できます。 !LiteSpeed は Apache の設定ファイルから直接操作でき、ビジネスに不可欠な環境をターゲットにしています。
     286
     287セットアップ
     288
     2891) 最初に Trac プロジェクトをインストールして動作することを確認して下さい。最初のインストールでは、 "tracd" を使用します。
     290
     2912) このセットアップでは仮想ホストを作成します。以下、この仮想ホストのことを !TracVhost と呼びます。このチュートリアルで、先ほど作ったプロジェクトが以下の URL 経由でアクセスできると仮定します:
     292
     293{{{
     294http://yourdomain.com/trac/
     295}}}
     296
     2973) "!TracVhost → External AApps" タブへ移動し、新しい "External Application" を作成します。
     298
     299{{{
     300Name: MyTracFCGI       
     301Address: uds://tmp/lshttpd/mytracfcgi.sock
     302Max Connections: 10
     303Environment: TRAC_ENV=/fullpathto/mytracproject/ <--- path to root folder of trac project
     304Initial Request Timeout (secs): 30
     305Retry Timeout (secs): 0
     306Persistent Connection   Yes
     307Connection Keepalive Timeout: 30
     308Response Bufferring: No
     309Auto Start: Yes
     310Command: /usr/share/trac/cgi-bin/trac.fcgi  <--- path to trac.fcgi
     311Back Log: 50
     312Instances: 10
     313}}}
     314
     3154) (非必須) "!TracVhost → Security" タブへ移動し、新しいセキュリティ "Realm" を作成することができます。
     316
     317{{{
     318DB Type: Password File
     319Realm Name: MyTracUserDB               <--- any name you wish and referenced later
     320User DB Location: /fullpathto/htpasswd <--- path to your htpasswd file
     321}}}
     322
     323もし、 htpasswd ファイルを持っていない、もしくは作り方を知らない場合は、 http://sherylcanter.com/encrypt.php にアクセスし、ユーザ名:パスワード の一対を生成して下さい。
     324
     3255) "!PythonVhost → Contexts" へ移動し、新しい "FCGI Context" を作成します。
     326
     327{{{
     328URI: /trac/                              <--- URI path to bind to python fcgi app we created   
     329Fast CGI App: [VHost Level] MyTractFCGI  <--- select the trac fcgi extapp we just created
     330Realm: TracUserDB                        <--- only if (4) is set. select realm created in (4)
     331}}}
     332
     3336) /fullpathto/mytracproject/conf/trac.ini を修正します。
     334
     335{{{
     336#find/set base_rul, url, and link variables
     337base_url = http://yourdomain.com/trac/ <--- base url to generate correct links to
     338url = http://yourdomain.com/trac/      <--- link of project
     339link = http://yourdomain.com/trac/     <--- link of graphic logo
     340}}}
     341
     3427) !LiteSpeed を "lswsctrl restart" で再起動し、新しい Trac プロジェクトに以下の URL でアクセスします:
     343
     344
     345{{{
     346http://yourdomain.com/trac/
     347}}}
     348
     349=== Simple Nginx Configuration ===
     350
     3511) Nginx configuration snippet - confirmed to work on 0.6.32
     352{{{
     353    server {
     354        listen       10.9.8.7:443;
     355        server_name  trac.example;
     356
     357        ssl                  on;
     358        ssl_certificate      /etc/ssl/trac.example.crt;
     359        ssl_certificate_key  /etc/ssl/trac.example.key;
     360
     361        ssl_session_timeout  5m;
     362
     363        ssl_protocols  SSLv2 SSLv3 TLSv1;
     364        ssl_ciphers  ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;
     365        ssl_prefer_server_ciphers   on;
     366
     367        # (Or ``^/some/prefix/(.*)``.
     368        if ($uri ~ ^/(.*)) {
     369             set $path_info /$1;
     370        }
     371
     372        # You can copy this whole location to ``location [/some/prefix]/login``
     373        # and remove the auth entries below if you want Trac to enforce
     374        # authorization where appropriate instead of needing to authenticate
     375        # for accessing the whole site.
     376        # (Or ``location /some/prefix``.)
     377        location / {
     378            auth_basic            "trac realm";
     379            auth_basic_user_file /home/trac/htpasswd;
     380
     381            # socket address
     382            fastcgi_pass   unix:/home/trac/run/instance.sock;
     383
     384            # python - wsgi specific
     385            fastcgi_param HTTPS on;
     386
     387            ## WSGI REQUIRED VARIABLES
     388            # WSGI application name - trac instance prefix.
     389            # (Or ``fastcgi_param  SCRIPT_NAME  /some/prefix``.)
     390            fastcgi_param  SCRIPT_NAME        "";
     391            fastcgi_param  PATH_INFO          $path_info;
     392
     393            ## WSGI NEEDED VARIABLES - trac warns about them
     394            fastcgi_param  REQUEST_METHOD     $request_method;
     395            fastcgi_param  SERVER_NAME        $server_name;
     396            fastcgi_param  SERVER_PORT        $server_port;
     397            fastcgi_param  SERVER_PROTOCOL    $server_protocol;
     398
     399            # for authentication to work
     400            fastcgi_param  AUTH_USER          $remote_user;
     401            fastcgi_param  REMOTE_USER        $remote_user;
     402        }
     403    }
     404}}}
     405
     4062) Modified trac.fcgi:
     407
     408{{{
     409#!/usr/bin/env python
     410import os
     411sockaddr = '/home/trac/run/instance.sock'
     412os.environ['TRAC_ENV'] = '/home/trac/instance'
     413
     414try:
     415     from trac.web.main import dispatch_request
     416     import trac.web._fcgi
     417
     418     fcgiserv = trac.web._fcgi.WSGIServer(dispatch_request,
     419          bindAddress = sockaddr, umask = 7)
     420     fcgiserv.run()
     421
     422except SystemExit:
     423    raise
     424except Exception, e:
     425    print 'Content-Type: text/plain\r\n\r\n',
     426    print 'Oops...'
     427    print
     428    print 'Trac detected an internal error:'
     429    print
     430    print e
     431    print
     432    import traceback
     433    import StringIO
     434    tb = StringIO.StringIO()
     435    traceback.print_exc(file=tb)
     436    print tb.getvalue()
     437
     438}}}
     439
     4403) reload nginx and launch trac.fcgi like that:
     441
     442{{{
     443trac@trac.example ~ $ ./trac-standalone-fcgi.py
     444}}}
     445
     446The above assumes that:
     447 * There is a user named 'trac' for running trac instances and keeping trac environments in its home directory.
     448 * /home/trac/instance contains a trac environment
     449 * /home/trac/htpasswd contains authentication information
     450 * /home/trac/run is owned by the same group the nginx runs under
     451  * and if your system is Linux the /home/trac/run has setgid bit set (chmod g+s run)
     452  * and patch from ticket #T7239 is applied, or you'll have to fix the socket file permissions every time
     453
     454Unfortunately nginx does not support variable expansion in fastcgi_pass directive.
     455Thus it is not possible to serve multiple trac instances from one server block.
     456
     457If you worry enough about security, run trac instances under separate users.
     458
     459Another way to run trac as a FCGI external application is offered in ticket #T6224
     460
     461----
     462See also:  TracGuide, TracInstall, [wiki:TracModWSGI ModWSGI], [wiki:TracCgi CGI], [wiki:TracModPython ModPython], [http://trac.edgewall.org/wiki/TracNginxRecipe TracNginxRecipe]