Changes between Version 1 and Version 2 of TracFastCgi


Ignore:
Timestamp:
Jan 5, 2015 9:18:11 PM (10 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TracFastCgi

    v1 v2  
    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 
     9There 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: 
    1714{{{ 
    1815# Enable fastcgi for .fcgi files 
     
    2522LoadModule fastcgi_module /usr/lib/apache2/modules/mod_fastcgi.so 
    2623}}} 
    27 デフォルトの設定に問題がなければ、 `FastCgiIpcDir` の設定は必須ではありません。 `LoadModule` の行は `IfModule` グループの後になければいけないことに注意して下さい。 
    28  
    29 `ScriptAlias` を設定するもしくは似たオプションが TracCgi で説明されていますが、  
    30 `trac.cgi` の代わりに `trac.fcgi` を呼びます。 
    31  
    32 `TRAC_ENV` を以下のように設定することができます: 
     24Setting `FastCgiIpcDir` is optional if the default is suitable. Note that the `LoadModule` line must be after the `IfModule` group. 
     25 
     26Configure `ScriptAlias` or similar options as described in TracCgi, but 
     27calling `trac.fcgi` instead of `trac.cgi`. 
     28 
     29You can set up the `TRAC_ENV` as an overall default: 
    3330{{{ 
    3431FastCgiConfig -initial-env TRAC_ENV=/path/to/env/trac 
    3532}}} 
    3633 
    37 もしくは複数の Trac プロジェクトを扱っているときは、このように設定します: 
     34Or you can serve multiple Trac projects in a directory like: 
    3835{{{ 
    3936FastCgiConfig -initial-env TRAC_ENV_PARENT_DIR=/parent/dir/of/projects 
    4037}}} 
    4138 
    42 これらの設定は、 `mod_fcgid` では動きません。似ていますが  
    43 `mod_fcgid` での部分的な解決策は以下の通りになります: 
     39==== setup with `mod_fcgid` ==== 
     40Configure `ScriptAlias` (see TracCgi for details), but call `trac.fcgi` 
     41instead of `trac.cgi`. Note that slash at the end - it is important. 
     42{{{ 
     43ScriptAlias /trac /path/to/www/trac/cgi-bin/trac.fcgi/ 
     44}}} 
     45 
     46To 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 
     49alternative environment setup below. 
     50 
    4451{{{ 
    4552DefaultInitEnv TRAC_ENV /path/to/env/trac/ 
    4653}}} 
    47 しかし、これは `Directory` や `Location` コンテキストで使用することができません。 
    48 よって、複数のプロジェクトに対応するのは難しくなります。 
    49  
    50 これらのモジュールの両方 (同様に [http://www.lighttpd.net/ lighttpd] と CGI も) で動かすよりよい方法は、  
    51 `trac.fcgi` に以下の値を設定することです。  
    52 Web サーバに環境変数を設定する必要がなくなります。例: 
     54 
     55==== alternative environment setup ==== 
     56A better method to specify path to Trac environment it to embed the path 
     57into `trac.fcgi` script itself. That doesn't require configuration of server 
     58environment variables, works for both FastCgi modules 
     59(and for [http://www.lighttpd.net/ lighttpd] and CGI as well): 
    5360{{{ 
    5461import os 
     
    6168}}} 
    6269 
    63 プロジェクトごとの `ScriptAliases` と `.fcgi` スクリプトを設定すれば、 
    64 この方法を使用して複数のプロジェクトに対応することができます。  
    65 `trac.fcgi` をコピーして、ファイル名を適切に変更し、上記のコードをそれぞれのスクリプトに追記します。 
    66  
    67 この [https://coderanger.net/~coderanger/httpd/fcgi_example.conf fcgid 設定例] を見たところ、 !ScriptAlias ディレクティブでは末尾の / も含めて、このように設定する: 
     70With this method different projects can be supported by using different 
     71`.fcgi` scripts with different `ScriptAliases`. 
     72 
     73See [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: 
    6874{{{ 
    6975ScriptAlias / /srv/tracsite/cgi-bin/trac.fcgi/ 
     
    7278== Simple Cherokee Configuration == 
    7379 
    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 
     80The configuration on Cherokee's side is quite simple. You will only need to know that you can spawn Trac as an SCGI process. 
     81You can either start it manually, or better yet, automatically by letting Cherokee spawn the server whenever it is down. 
     82First set up an information source in cherokee-admin with a local interpreter. 
     83 
     84{{{ 
     85Host: 
     86localhost:4433 
     87 
     88Interpreter: 
     89/usr/bin/tracd —single-env —daemonize —protocol=scgi —hostname=localhost —port=4433 /path/to/project/ 
     90}}} 
     91 
     92If 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 
     94After 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. 
     95The 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 
     97Note:\\ 
     98If 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.\\ 
     99Python-flup is a dependency which provides trac with SCGI capability. You can install it on debian based systems with: 
     100{{{ 
     101sudo apt-get install python-flup 
     102}}} 
     103 
     104== Simple Lighttpd Configuration == 
     105 
     106The FastCGI front-end was developed primarily for use with alternative webservers, such as [http://www.lighttpd.net/ lighttpd]. 
     107 
     108lighttpd is a secure, fast, compliant and very flexible web-server that has been optimized for high-performance 
     109environments.  It has a very low memory footprint compared to other web servers and takes care of CPU load. 
     110 
     111For 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 
    86114var.fcgi_binary="/path/to/cgi-bin/trac.fcgi" # 0.10 name of prior fcgi executable 
    87115fastcgi.server = ("/trac" => 
     
    98126}}} 
    99127 
    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` に以下の設定を追加します: 
     128Note 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, 
     129and you may set one of the two in `trac.fcgi` instead of in `lighttpd.conf` 
     130using `bin-environment` (as in the section above on Apache configuration). 
     131 
     132Note 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 
     134For using two projects with lighttpd add the following to your `lighttpd.conf`: 
    105135{{{ 
    106136fastcgi.server = ("/first" => 
     
    124154                ) 
    125155}}} 
    126 各フィールドの値が異なることに注意して下さい。もし `.fcgi` スクリプトに 
    127 環境変数を設定するほうが好ましい場合は、 `trac.fcgi` をコピー/名前変更をして下さい。例として、 
    128 `first.fcgi` と `second.fcgi` が上記の設定では参照されるようにします。 
    129 上記の設定で、両方のプロジェクトが 同じ `trac.fcgi` スクリプトで起動していても、 
    130 異なるプロセスになることに注意して下さい。 
     156Note that field values are different.  If you prefer setting the environment 
     157variables 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. 
     159Note that the above will result in different processes in any event, even 
     160if both are running from the same `trac.fcgi` script. 
    131161{{{ 
    132162#!div class=important 
    133 '''Note''' server.modules をロードする順番はとても重要です。 mod_auth が mod_fastcgi より '''先に''' ロードされる設定になっていない場合、サーバはユーザの認証に失敗します。 
    134 }}} 
    135 認証のために lighttpd.conf の 'server.modules' 中で mod_auth を有効にして、 auth.backend と認証方法を選択して下さい: 
     163'''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. 
     164}}} 
     165For authentication you should enable mod_auth in lighttpd.conf 'server.modules', select auth.backend and auth rules: 
    136166{{{ 
    137167server.modules              = ( 
     
    171201 
    172202}}} 
    173 パスワードファイルがない場合、 lighttpd (確認したバージョンは 1.4.3) が停止するので注意して下さい。 
    174  
    175 バージョン 1.3.16 以前では lighttpd は 'valid-user' をサポートしていないので注意してください。 
    176  
    177 条件付の設定は静的リソースをマッピングするときに便利です。例として FastCGI を経由せずに直接イメージファイルや CSS を参照するときなどです。: 
     203Note that lighttpd (I use version 1.4.3) stopped if password file doesn't exist. 
     204 
     205Note that lighttpd doesn't support 'valid-user' in versions prior to 1.3.16. 
     206 
     207Conditional configuration is also useful for mapping static resources, i.e. serving out images and CSS directly instead of through FastCGI: 
    178208{{{ 
    179209# Aliasing functionality is needed 
     
    199229} 
    200230}}} 
    201 複数のプロジェクトのそれぞれにエイリアスを作れば、複数のプロジェクトを動かすのは技術的には簡単です。 fastcgi.server を条件ブロックの中で宣言しラッピングします。 
    202 複数のプロジェクトをハンドルするもう一つの方法があります。 TRAC_ENV_PARENT_DIR を TRAC_ENV の代わりに使用し、グローバルの認証機構を使用します。サンプルを見てみましょう: 
     231The technique can be easily adapted for use with multiple projects by creating aliases for each of them, and wrapping the fastcgi.server declarations inside conditional configuration blocks. 
     232Also there is another way to handle multiple projects and it's to use TRAC_ENV_PARENT_DIR instead of TRAC_ENV and use global auth, let's see an example: 
    203233{{{ 
    204234#  This is for handling multiple projects 
     
    230260}}} 
    231261 
    232 lighttpd では環境変数の LC_TIME を上書きして、日付/時間のフォーマットを変更することも出来ます。 
     262Changing date/time format also supported by lighttpd over environment variable LC_TIME 
    233263{{{ 
    234264fastcgi.server = ("/trac" => 
     
    244274                 ) 
    245275}}} 
    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 経由でアクセスできると仮定します: 
     276For details about languages specification see [trac:TracFaq TracFaq] question 2.13. 
     277 
     278Other 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 
     280If you use trac-0.9, read [http://lists.edgewall.com/archive/trac/2005-November/005311.html about small bug] 
     281 
     282Relaunch lighttpd, and browse to `http://yourhost.example.org/trac` to access Trac. 
     283 
     284Note 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 
     291The 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: 
    270300 
    271301{{{ 
     
    273303}}} 
    274304 
    275 3) "!TracVhost → External AApps" タブへ移動し、新しい "External Application" を作成します。 
     305 3. Go “!TracVhost → External Apps” tab and create a new “External Application”. 
    276306 
    277307{{{ 
     
    291321}}} 
    292322 
    293 4) (非必須) "!TracVhost → Security" タブへ移動し、新しいセキュリティ "Realm" を作成することができます。 
     323 4. Optional. If you need to use htpasswd based authentication. Go to “!TracVhost → Security” tab and create a new security “Realm”. 
    294324 
    295325{{{ 
     
    299329}}} 
    300330 
    301 もし、 htpasswd ファイルを持っていない、もしくは作り方を知らない場合は、 http://sherylcanter.com/encrypt.php にアクセスし、ユーザ名:パスワード の一対を生成して下さい。 
    302  
    303 5) "!PythonVhost → Contexts" へ移動し、新しい "FCGI Context" を作成します。 
     331If you don’t have a htpasswd file or don’t know how to create the entries within one, go to http://sherylcanter.com/encrypt.php, to generate the user:password combos. 
     332 
     333 5. Go to “!PythonVhost → Contexts” and create a new “FCGI Context”. 
    304334 
    305335{{{ 
     
    309339}}} 
    310340 
    311 6) /fullpathto/mytracproject/conf/trac.ini を修正します。 
     341 6. Modify `/fullpathto/mytracproject/conf/trac.ini` 
    312342 
    313343{{{ 
     
    318348}}} 
    319349 
    320 7) !LiteSpeed を "lswsctrl restart" で再起動し、新しい Trac プロジェクトに以下の URL でアクセスします: 
    321  
     350 7. Restart !LiteSpeed, “lswsctrl restart”, and access your new Trac project at:  
    322351 
    323352{{{ 
     
    325354}}} 
    326355 
    327 === Simple Nginx Configuration === 
    328  
    329 1) Nginx configuration snippet - confirmed to work on 0.5.36 
     356== Simple Nginx Configuration == 
     357 
     358 1. Nginx configuration snippet - confirmed to work on 0.6.32 
    330359{{{ 
    331360    server { 
     
    343372        ssl_prefer_server_ciphers   on; 
    344373 
     374        # (Or ``^/some/prefix/(.*)``. 
     375        if ($uri ~ ^/(.*)) { 
     376             set $path_info /$1; 
     377        } 
     378 
     379        # You can copy this whole location to ``location [/some/prefix]/login`` 
     380        # and remove the auth entries below if you want Trac to enforce 
     381        # authorization where appropriate instead of needing to authenticate 
     382        # for accessing the whole site. 
     383        # (Or ``location /some/prefix``.) 
    345384        location / { 
    346385            auth_basic            "trac realm"; 
    347386            auth_basic_user_file /home/trac/htpasswd; 
    348387 
    349             # full path 
    350             if ($uri ~ ^/([^/]+)(/.*)) { 
    351                  set $script_name $1; 
    352                  set $path_info $2; 
    353             } 
    354  
    355             # index redirect  
    356             if ($uri ~ ^/([^/]+)$) { 
    357                  rewrite (.+) $1/ permanent;  
    358             } 
    359           
    360388            # socket address 
    361389            fastcgi_pass   unix:/home/trac/run/instance.sock; 
     
    365393 
    366394            ## WSGI REQUIRED VARIABLES 
    367             # WSGI application name - trac instance prefix.  
    368             fastcgi_param  SCRIPT_NAME        /$script_name; 
     395            # WSGI application name - trac instance prefix. 
     396            # (Or ``fastcgi_param  SCRIPT_NAME  /some/prefix``.) 
     397            fastcgi_param  SCRIPT_NAME        ""; 
    369398            fastcgi_param  PATH_INFO          $path_info; 
    370399 
     
    374403            fastcgi_param  SERVER_PORT        $server_port; 
    375404            fastcgi_param  SERVER_PROTOCOL    $server_protocol; 
     405            fastcgi_param  QUERY_STRING     $query_string; 
    376406 
    377407            # for authentication to work 
     408            fastcgi_param  AUTH_USER          $remote_user; 
    378409            fastcgi_param  REMOTE_USER        $remote_user; 
    379410        } 
     
    381412}}} 
    382413 
    383 2) Modified trac.fcgi: 
     414 2. Modified trac.fcgi: 
    384415 
    385416{{{ 
     
    415446}}} 
    416447 
    417 3) reload nginx and launch trac.fcgi like that: 
     448 3. reload nginx and launch trac.fcgi like that: 
    418449 
    419450{{{ 
     
    423454The above assumes that: 
    424455 * There is a user named 'trac' for running trac instances and keeping trac environments in its home directory. 
    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`) 
    429460  * and patch from ticket #T7239 is applied, or you'll have to fix the socket file permissions every time 
    430461 
     
    437468 
    438469---- 
    439 See also TracCgi, TracModPython, TracInstall, TracGuide, [http://trac.edgewall.org/wiki/TracNginxRecipe TracNginxRecipe] 
     470See also:  TracGuide, TracInstall, [wiki:TracModWSGI ModWSGI], [wiki:TracCgi CGI], [wiki:TracModPython ModPython], [trac:TracNginxRecipe TracNginxRecipe]