Äîêóìåíò âçÿò èç êýøà ïîèñêîâîé ìàøèíû. Àäðåñ îðèãèíàëüíîãî äîêóìåíòà : http://kodomo.cmm.msu.su/trac/tanchiki/wiki/TracFastCgi?action=diff&version=2
Äàòà èçìåíåíèÿ: Unknown
Äàòà èíäåêñèðîâàíèÿ: Mon Apr 11 04:13:35 2016
Êîäèðîâêà: IBM-866
TracFastCgi (diff) òÀÓ Tanchiki

Changes between Version 1 and Version 2 of TracFastCgi


Ignore:
Timestamp:
08/21/13 19:46:14 (3 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TracFastCgi

    v1 v2 ˆà
    ˆà1[[PageOutline]]ˆà
    ˆà2ˆà
    13= Trac with FastCGI =ˆà
    24ˆà
    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].ˆà
    ˆà5[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.ˆà
    ˆà6ˆà
    ˆà7Note that unlike mod_python, FastCGI supports [http://httpd.apache.org/docs/suexec.html Apache SuEXEC], i.e. run with different permissions than web server running with (`mod_wsgi` supports the `WSGIDaemonProcess` with user / group parameters to achieve the same effect).ˆà
    ˆà8ˆà
    ˆà9'''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].ˆà
    ˆà10ˆà
    ˆà11[[PageOutline(2-3,Overview,inline)]]ˆà
    ˆà12ˆà
    613ˆà
    714== Simple Apache configuration ==ˆà
    òÀæ òÀæ ˆà
    1017`mod_fcgid` (preferred). The latter is more up-to-date.ˆà
    1118ˆà
    12ˆà==== setup with `mod_fastcgi` ====ˆà
    ˆà19The following sections focus on the FCGI specific setup, see also [wiki:TracModWSGI#ConfiguringAuthentication] for configuring the authentication in Apache.ˆà
    ˆà20ˆà
    ˆà21Regardless 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) ˆà
    ˆà22ˆà
    ˆà23=== Set up with `mod_fastcgi` ===ˆà
    1324`mod_fastcgi` uses `FastCgiIpcDir` and `FastCgiConfig` directives that should be added to an appropriate Apache configuration file:ˆà
    1425{{{ˆà
    òÀæ òÀæ ˆà
    2738calling `trac.fcgi` instead of `trac.cgi`.ˆà
    2839ˆà
    29ˆàYou can set up the `TRAC_ENV` as an overall default:ˆà
    ˆà40Add the following to the Apache configuration file (below the `FastCgiIpcDir` line) if you intend to set up the `TRAC_ENV` as an overall default:ˆà
    3041{{{ˆà
    3142FastCgiConfig -initial-env TRAC_ENV=/path/to/env/tracˆà
    3243}}}ˆà
    3344ˆà
    34ˆàOr you can serve multiple Trac projects in a directory like:ˆà
    ˆà45Alternatively, you can serve multiple Trac projects in a directory by adding this:ˆà
    3546{{{ˆà
    3647FastCgiConfig -initial-env TRAC_ENV_PARENT_DIR=/parent/dir/of/projectsˆà
    3748}}}ˆà
    3849ˆà
    39ˆà==== setup with `mod_fcgid` ====ˆà
    ˆà50=== Set up with `mod_fcgid` ===ˆà
    4051Configure `ScriptAlias` (see TracCgi for details), but call `trac.fcgi`ˆà
    4152instead of `trac.cgi`. Note that slash at the end - it is important.ˆà
    òÀæ òÀæ ˆà
    4455}}}ˆà
    4556ˆà
    46ˆàTo setup Trac environment for `mod_fcgid` it is necessary to useˆà
    47ˆà`FCGIDDefaultInitEnv` directive. It cannot be used in `Directory` orˆà
    ˆà57To set up Trac environment for `mod_fcgid` it is necessary to useˆà
    ˆà58`DefaultInitEnv` directive. It cannot be used in `Directory` orˆà
    4859`Location` context, so if you need to support multiple projects, tryˆà
    4960alternative environment setup below.ˆà
    5061ˆà
    5162{{{ˆà
    52ˆàFCGIDDefaultInitEnv TRAC_ENV /path/to/env/trac/ˆà
    53ˆà}}}ˆà
    54ˆàˆà
    55ˆà==== alternative environment setup ====ˆà
    56ˆàA better method to specify path to Trac environment it to embed the pathˆà
    ˆà63DefaultInitEnv TRAC_ENV /path/to/env/trac/ˆà
    ˆà64}}}ˆà
    ˆà65ˆà
    ˆà66=== alternative environment setup ===ˆà
    ˆà67A better method to specify path to Trac environment is to embed the pathˆà
    5768into `trac.fcgi` script itself. That doesn't require configuration of serverˆà
    5869environment variables, works for both FastCgi modulesˆà
    òÀæ òÀæ ˆà
    93104ˆà
    94105After 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/''ˆà
    ˆà106The 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).ˆà
    ˆà107ˆà
    ˆà108Note:\\ˆà
    ˆà109If 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.\\ˆà
    ˆà110Python-flup is a dependency which provides trac with SCGI capability. You can install it on debian based systems with:ˆà
    ˆà111{{{ˆà
    ˆà112sudo apt-get install python-flupˆà
    ˆà113}}}ˆà
    ˆà114ˆà
    96115ˆà
    97116== Simple Lighttpd Configuration ==ˆà
    òÀæ òÀæ ˆà
    122141and you may set one of the two in `trac.fcgi` instead of in `lighttpd.conf`ˆà
    123142using `bin-environment` (as in the section above on Apache configuration).ˆà
    ˆà143ˆà
    ˆà144Note 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 [trac:#2418]). This should be fixed since lighttpd 1.4.23, and you may need to add `"fix-root-scriptname" => "enable"` as parameter of fastcgi.server.ˆà
    124145ˆà
    125146For using two projects with lighttpd add the following to your `lighttpd.conf`:ˆà
    òÀæ òÀæ ˆà
    150171Note that the above will result in different processes in any event, evenˆà
    151172if both are running from the same `trac.fcgi` script.ˆà
    ˆà173ˆà
    152174{{{ˆà
    153175#!div class=importantˆà
    154176'''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.ˆà
    155177}}}ˆà
    ˆà178ˆà
    156179For authentication you should enable mod_auth in lighttpd.conf 'server.modules', select auth.backend and auth rules:ˆà
    157180{{{ˆà
    òÀæ òÀæ ˆà
    201224server.modules += ("mod_alias")ˆà
    202225ˆà
    203ˆà# Setup an alias for the static resourcesˆà
    ˆà226# Set up an alias for the static resourcesˆà
    204227alias.url = ("/trac/chrome/common" => "/usr/share/trac/htdocs")ˆà
    205228ˆà
    òÀæ òÀæ ˆà
    267290For details about languages specification see [trac:TracFaq TracFaq] question 2.13.ˆà
    268291ˆà
    269ˆà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.ˆà
    270ˆàˆà
    271ˆàIf you use trac-0.9, read [http://lists.edgewall.com/archive/trac/2005-November/005311.html about small bug]ˆà
    ˆà292Other important information like the [wiki:TracInstall#MappingStaticResources mapping static resources advices] are useful for non-fastcgi specific installation aspects.ˆà
    ˆà293]ˆà
    272294ˆà
    273295Relaunch lighttpd, and browse to `http://yourhost.example.org/trac` to access Trac.ˆà
    òÀæ òÀæ ˆà
    275297Note about running lighttpd with reduced permissions:ˆà
    276298ˆà
    277ˆà  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.ˆà
    ˆà299If 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.ˆà
    278300ˆà
    279301ˆà
    òÀæ òÀæ ˆà
    284306!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.ˆà
    285307ˆà
    286ˆàSetupˆà
    287ˆàˆà
    288ˆà1) Please make sure you have first have a working install of a Trac project. Test install with òÀÜtracdòÀÝ first.ˆà
    289ˆàˆà
    290ˆà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:ˆà
    ˆà308 1. Please make sure you have first have a working install of a Trac project. Test install with òÀÜtracdòÀÝ first.ˆà
    ˆà309ˆà
    ˆà310 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:ˆà
    291311ˆà
    292312{{{ˆà
    òÀæ òÀæ ˆà
    294314}}}ˆà
    295315ˆà
    296ˆà3) Go òÀÜTracVhost òÆÒ External AppsòÀÝ tab and create a new òÀÜExternal ApplicationòÀÝ.ˆà
    ˆà316 3. Go òÀÜ!TracVhost òÆÒ External AppsòÀÝ tab and create a new òÀÜExternal ApplicationòÀÝ.ˆà
    297317ˆà
    298318{{{ˆà
    òÀæ òÀæ ˆà
    312332}}}ˆà
    313333ˆà
    314ˆà4) Optional. If you need to use htpasswd based authentication. Go to òÀÜTracVhost òÆÒ SecurityòÀÝ tab and create a new security òÀÜRealmòÀÝ.ˆà
    ˆà334 4. Optional. If you need to use htpasswd based authentication. Go to òÀÜ!TracVhost òÆÒ SecurityòÀÝ tab and create a new security òÀÜRealmòÀÝ.ˆà
    315335ˆà
    316336{{{ˆà
    òÀæ òÀæ ˆà
    322342If 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.ˆà
    323343ˆà
    324ˆà5) Go to òÀÜPythonVhost òÆÒ ContextsòÀÝ and create a new òÀÜFCGI ContextòÀÝ.ˆà
    ˆà344 5. Go to òÀÜ!PythonVhost òÆÒ ContextsòÀÝ and create a new òÀÜFCGI ContextòÀÝ.ˆà
    325345ˆà
    326346{{{ˆà
    òÀæ òÀæ ˆà
    330350}}}ˆà
    331351ˆà
    332ˆà6) Modify /fullpathto/mytracproject/conf/trac.iniˆà
    ˆà352 6. Modify `/fullpathto/mytracproject/conf/trac.ini`ˆà
    333353ˆà
    334354{{{ˆà
    òÀæ òÀæ ˆà
    339359}}}ˆà
    340360ˆà
    341ˆà7) Restart !LiteSpeed, òÀÜlswsctrl restartòÀÝ, and access your new Trac project at: ˆà
    ˆà361 7. Restart !LiteSpeed, òÀÜlswsctrl restartòÀÝ, and access your new Trac project at: ˆà
    342362ˆà
    343363{{{ˆà
    òÀæ òÀæ ˆà
    345365}}}ˆà
    346366ˆà
    347ˆà=== Simple Nginx Configuration ===ˆà
    348ˆàˆà
    349ˆà1) Nginx configuration snippet - confirmed to work on 0.6.32ˆà
    ˆà367ˆà
    ˆà368== Simple Nginx Configuration ==ˆà
    ˆà369ˆà
    ˆà370Nginx is able to communicate with FastCGI processes, but can not spawn them. So you need to start FastCGI server for Trac separately.ˆà
    ˆà371ˆà
    ˆà372 1. Nginx configuration with basic authentication handled by Nginx - confirmed to work on 0.6.32ˆà
    350373{{{ˆà
    351374    server {ˆà
    òÀæ òÀæ ˆà
    366389        if ($uri ~ ^/(.*)) {ˆà
    367390             set $path_info /$1;ˆà
    ˆà391        }ˆà
    ˆà392ˆà
    ˆà393        # it makes sense to serve static resources through Nginxˆà
    ˆà394        location /chrome/ {ˆà
    ˆà395             alias /home/trac/instance/static/htdocs/;ˆà
    368396        }ˆà
    369397ˆà
    òÀæ òÀæ ˆà
    394422            fastcgi_param  SERVER_PORT        $server_port;ˆà
    395423            fastcgi_param  SERVER_PROTOCOL    $server_protocol;ˆà
    396ˆàˆà
    397ˆà            # for authentication to workˆà
    ˆà424            fastcgi_param  QUERY_STRING       $query_string;ˆà
    ˆà425ˆà
    ˆà426            # For Nginx authentication to work - do not forget to comment theseˆà
    ˆà427            # lines if not using Nginx for authenticationˆà
    398428            fastcgi_param  AUTH_USER          $remote_user;ˆà
    399429            fastcgi_param  REMOTE_USER        $remote_user;ˆà
    ˆà430ˆà
    ˆà431            # for ip to workˆà
    ˆà432            fastcgi_param REMOTE_ADDR         $remote_addr;ˆà
    ˆà433ˆà
    ˆà434            # For attchments to workˆà
    ˆà435            fastcgi_param    CONTENT_TYPE     $content_type;ˆà
    ˆà436            fastcgi_param    CONTENT_LENGTH   $content_length;ˆà
    400437        }ˆà
    401438    }ˆà
    402439}}}ˆà
    403440ˆà
    404ˆà2) Modified trac.fcgi:ˆà
    ˆà441 2. Modified trac.fcgi:ˆà
    405442ˆà
    406443{{{ˆà
    òÀæ òÀæ ˆà
    436473}}}ˆà
    437474ˆà
    438ˆà3) reload nginx and launch trac.fcgi like that:ˆà
    ˆà475 3. reload nginx and launch trac.fcgi like that:ˆà
    439476ˆà
    440477{{{ˆà
    òÀæ òÀæ ˆà
    444481The above assumes that:ˆà
    445482 * There is a user named 'trac' for running trac instances and keeping trac environments in its home directory.ˆà
    446ˆà * /home/trac/instance contains a trac environmentˆà
    447ˆà * /home/trac/htpasswd contains authentication informationˆà
    448ˆà * /home/trac/run is owned by the same group the nginx runs underˆà
    449ˆà  * and if your system is Linux the /home/trac/run has setgid bit set (chmod g+s run)ˆà
    ˆà483 * `/home/trac/instance` contains a trac environmentˆà
    ˆà484 * `/home/trac/htpasswd` contains authentication informationˆà
    ˆà485 * `/home/trac/run` is owned by the same group the nginx runs underˆà
    ˆà486  * and if your system is Linux the `/home/trac/run` has setgid bit set (`chmod g+s run`)ˆà
    450487  * and patch from ticket #T7239 is applied, or you'll have to fix the socket file permissions every timeˆà
    451488ˆà