Changes between Version 1 and Version 2 of TracFastCgi
- Время:
- 13 апр. 2009 г., 12:52:51 (17 лет назад)
Обозначения:
- Без изменений
- Добавлено
- Удалено
- Изменено
-
TracFastCgi
v1 v2 1 1 = Trac with FastCGI = 2 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 F astCGI 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].3 Since version 0.9, Trac supports being run through the [http://www.fastcgi.com/ FastCGI] interface. Like [wiki:TracModPython mod_python], this allows Trac to remain resident, and is faster than external CGI interfaces which must start a new process for each request. However, unlike mod_python, it is able to support [http://httpd.apache.org/docs/suexec.html SuEXEC]. Additionally, it is supported by much wider variety of web servers. 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 6 7 7 == Simple Apache configuration == 8 8 9 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: 10 `mod_fcgid`. The `FastCgiIpcDir` and `FastCgiConfig` directives discussed 11 below are `mod_fastcgi` directives; the `DefaultInitEnv` is a `mod_fcgid` 12 directive. 13 14 For `mod_fastcgi`, add the following to an appropriate Apache configuration 15 file: 14 16 {{{ 15 17 # Enable fastcgi for .fcgi files … … 37 39 }}} 38 40 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 41 But neither of these will work for `mod_fcgid`. A similar but partial 42 solution for `mod_fcgid` is: 51 43 {{{ 52 44 DefaultInitEnv TRAC_ENV /path/to/env/trac/ 53 45 }}} 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):46 But this cannot be used in `Directory` or `Location` context, which makes it 47 difficult to support multiple projects. 48 49 A better method which works for both of these modules (and for [http://www.lighttpd.net/ lighttpd] and CGI as well), because it involves 50 no server configuration settings for environment variables, is to set one 51 of the variables in `trac.fcgi`, e.g.: 60 52 {{{ 61 53 import os … … 68 60 }}} 69 61 70 With this method different projects can be supported by using different 71 `.fcgi` scripts with different `ScriptAliases`. 62 Using this method, different projects can be supported by using different 63 `.fcgi` scripts with different `ScriptAliases`, copying and appropriately 64 renaming `trac.fcgi` and adding the above code to create each such script. 72 65 73 66 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: … … 78 71 == Simple Cherokee Configuration == 79 72 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/'' 73 Configuration wanted. 96 74 97 75 == Simple Lighttpd Configuration == … … 104 82 For using `trac.fcgi`(prior to 0.11) / fcgi_frontend.py (0.11) with lighttpd add the following to your lighttpd.conf: 105 83 {{{ 106 #var.fcgi_binary="/ usr/bin/python /path/to/fcgi_frontend.py" # 0.11 if installed with easy_setup, it is inside the egg directory84 #var.fcgi_binary="/path/to/fcgi_frontend.py" # 0.11 if installed with easy_setup, it is inside the egg directory 107 85 var.fcgi_binary="/path/to/cgi-bin/trac.fcgi" # 0.10 name of prior fcgi executable 108 86 fastcgi.server = ("/trac" => … … 122 100 and you may set one of the two in `trac.fcgi` instead of in `lighttpd.conf` 123 101 using `bin-environment` (as in the section above on Apache configuration). 124 125 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.126 102 127 103 For using two projects with lighttpd add the following to your `lighttpd.conf`: … … 277 253 Note about running lighttpd with reduced permissions: 278 254 279 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.255 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. 280 256 281 257 … … 286 262 !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. 287 263 288 === Setup === 289 290 1.Please make sure you have first have a working install of a Trac project. Test install with “tracd” first.291 292 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:264 Setup 265 266 1) Please make sure you have first have a working install of a Trac project. Test install with “tracd” first. 267 268 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: 293 269 294 270 {{{ … … 296 272 }}} 297 273 298 3. Go “!TracVhost → External Apps” tab and create a new “External Application”.274 3) Go “TracVhost → External Apps” tab and create a new “External Application”. 299 275 300 276 {{{ … … 314 290 }}} 315 291 316 4. Optional. If you need to use htpasswd based authentication. Go to “!TracVhost → Security” tab and create a new security “Realm”.292 4) Optional. If you need to use htpasswd based authentication. Go to “TracVhost → Security” tab and create a new security “Realm”. 317 293 318 294 {{{ … … 324 300 If 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. 325 301 326 5. Go to “!PythonVhost → Contexts” and create a new “FCGI Context”.302 5) Go to “PythonVhost → Contexts” and create a new “FCGI Context”. 327 303 328 304 {{{ … … 332 308 }}} 333 309 334 6. Modify `/fullpathto/mytracproject/conf/trac.ini` 310 6) Modify /fullpathto/mytracproject/conf/trac.ini 335 311 336 312 {{{ … … 341 317 }}} 342 318 343 7.Restart !LiteSpeed, “lswsctrl restart”, and access your new Trac project at:319 7) Restart !LiteSpeed, “lswsctrl restart”, and access your new Trac project at: 344 320 345 321 {{{ … … 347 323 }}} 348 324 349 == Simple Nginx Configuration==350 351 1. Nginx configuration snippet - confirmed to work on 0.6.32 325 === Simple Nginx Configuration === 326 327 1) Nginx configuration snippet - confirmed to work on 0.5.36 352 328 {{{ 353 329 server { … … 365 341 ssl_prefer_server_ciphers on; 366 342 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 enforce374 # authorization where appropriate instead of needing to authenticate375 # for accessing the whole site.376 # (Or ``location /some/prefix``.)377 343 location / { 378 344 auth_basic "trac realm"; 379 345 auth_basic_user_file /home/trac/htpasswd; 380 346 347 # full path 348 if ($uri ~ ^/([^/]+)(/.*)) { 349 set $script_name $1; 350 set $path_info $2; 351 } 352 353 # index redirect 354 if ($uri ~ ^/([^/]+)$) { 355 rewrite (.+) $1/ permanent; 356 } 357 381 358 # socket address 382 359 fastcgi_pass unix:/home/trac/run/instance.sock; … … 386 363 387 364 ## WSGI REQUIRED VARIABLES 388 # WSGI application name - trac instance prefix. 389 # (Or ``fastcgi_param SCRIPT_NAME /some/prefix``.) 390 fastcgi_param SCRIPT_NAME ""; 365 # WSGI application name - trac instance prefix. 366 fastcgi_param SCRIPT_NAME /$script_name; 391 367 fastcgi_param PATH_INFO $path_info; 392 368 … … 396 372 fastcgi_param SERVER_PORT $server_port; 397 373 fastcgi_param SERVER_PROTOCOL $server_protocol; 398 fastcgi_param QUERY_STRING $query_string;399 374 400 375 # for authentication to work 401 fastcgi_param AUTH_USER $remote_user;402 376 fastcgi_param REMOTE_USER $remote_user; 403 377 } … … 405 379 }}} 406 380 407 2.Modified trac.fcgi:381 2) Modified trac.fcgi: 408 382 409 383 {{{ … … 424 398 raise 425 399 except Exception, e: 426 print 'Content-Type: text/plain\r\n\r\n', 400 print 'Content-Type: text/plain 401 402 ', 427 403 print 'Oops...' 428 404 print … … 439 415 }}} 440 416 441 3.reload nginx and launch trac.fcgi like that:417 3) reload nginx and launch trac.fcgi like that: 442 418 443 419 {{{ … … 447 423 The above assumes that: 448 424 * There is a user named 'trac' for running trac instances and keeping trac environments in its home directory. 449 * `/home/trac/instance`contains a trac environment450 * `/home/trac/htpasswd`contains authentication information451 * `/home/trac/run`is owned by the same group the nginx runs under452 * and if your system is Linux the `/home/trac/run` has setgid bit set (`chmod g+s run`)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) 453 429 * and patch from ticket #T7239 is applied, or you'll have to fix the socket file permissions every time 454 430 … … 461 437 462 438 ---- 463 See also : TracGuide, TracInstall, [wiki:TracModWSGI ModWSGI], [wiki:TracCgi CGI], [wiki:TracModPython ModPython], [trac:TracNginxRecipe TracNginxRecipe]439 See also TracCgi, TracModPython, TracInstall, TracGuide, [trac:TracNginxRecipe TracNginxRecipe]