Edgewall Software

Changes between Version 21 and Version 22 of TracFastCgi


Ignore:
Timestamp:
Nov 16, 2005, 2:15:24 PM (18 years ago)
Author:
vyt@…
Comment:

Changing date/time format

Legend:

Unmodified
Added
Removed
Modified
  • TracFastCgi

    v21 v22  
    143143The 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.
    144144
     145Changing date/time format also supported by lighttpd over environment variable LC_TIME
     146{{{
     147fastcgi.server = ("/trac" =>
     148                   ("trac" =>
     149                     ("socket" => "/tmp/trac-fastcgi.sock",
     150                      "bin-path" => "/path/to/cgi-bin/trac.fcgi",
     151                      "check-local" => "disable",
     152                      "bin-environment" =>
     153                        ("TRAC_ENV" => "/path/to/projenv",
     154                        "LC_TIME" => "ru_RU")
     155                     )
     156                   )
     157                 )
     158}}}
     159For details about languages specification see TracFaq question 2.11.
     160
    145161Other 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.
    146162