Edgewall Software

Changes between Version 46 and Version 47 of TracFastCgi


Ignore:
Timestamp:
Oct 29, 2008, 9:21:32 PM (16 years ago)
Author:
ruben-trac at lingo dot com dot mx
Comment:

Small edit about the different fcgi binaries in 0.10 and 0.11 in Lighttpd section

Legend:

Unmodified
Added
Removed
Modified
  • TracFastCgi

    v46 v47  
    8585environments.  It has a very low memory footprint compared to other web servers and takes care of CPU load.
    8686
    87 For using `trac.fcgi` with lighttpd add the following to your lighttpd.conf:
    88 {{{
     87For using `trac.fcgi`(prior to 0.11) / fcgi_frontend.py (0.11) with lighttpd add the following to your lighttpd.conf:
     88{{{
     89#var.fcgi_binary="/path/to/fcgi_frontend.py" # 0.11 if installed with easy_setup, it is inside the egg directory
     90var.fcgi_binary="/path/to/cgi-bin/trac.fcgi" # 0.10 name of prior fcgi executable
    8991fastcgi.server = ("/trac" =>
     92   
    9093                   ("trac" =>
    9194                     ("socket" => "/tmp/trac-fastcgi.sock",
    92                       "bin-path" => "/path/to/cgi-bin/trac.fcgi",
     95                      "bin-path" => fcgi_binary,
    9396                      "check-local" => "disable",
    9497                      "bin-environment" =>
     
    108111                   ("first" =>
    109112                    ("socket" => "/tmp/trac-fastcgi-first.sock",
    110                      "bin-path" => "/path/to/cgi-bin/trac.fcgi",
     113                     "bin-path" => fcgi_binary,
    111114                     "check-local" => "disable",
    112115                     "bin-environment" =>
     
    117120                    ("second" =>
    118121                    ("socket" => "/tmp/trac-fastcgi-second.sock",
    119                      "bin-path" => "/path/to/cgi-bin/trac.fcgi",
     122                     "bin-path" => fcgi_binary,
    120123                     "check-local" => "disable",
    121124                     "bin-environment" =>
     
    193196                   ("trac" =>
    194197                     ("socket" => "/tmp/trac-fastcgi.sock",
    195                       "bin-path" => "/path/to/cgi-bin/trac.fcgi",
     198                      "bin-path" => fcgi_binary,
    196199                      "check-local" => "disable",
    197200                      "bin-environment" =>
     
    212215                        (
    213216                          "socket" => "/tmp/trac.sock",
    214                           "bin-path" => "/path/to/cgi-bin/trac.fcgi",
     217                          "bin-path" => fcgi_binary,
    215218                          "check-local" => "disable",
    216219                          "bin-environment" =>
     
    238241                   ("trac" =>
    239242                     ("socket" => "/tmp/trac-fastcgi.sock",
    240                       "bin-path" => "/path/to/cgi-bin/trac.fcgi",
     243                      "bin-path" => fcgi_binary,
    241244                      "check-local" => "disable",
    242245                      "bin-environment" =>