Mercurial > hg > rlgallery-misc
view lighttpd/conf.d/cgi.conf @ 64:86ae333bb4c0
Capitalize the class field in database entries.
Some logfiles capitalize it and some don't. It will now appear
consistently in the database and any database-derived pages.
That does not include recent.cgi, whose eventual status is still
undecided.
author | John "Elwin" Edwards |
---|---|
date | Tue, 23 Jun 2015 11:10:46 -0400 |
parents | e8f3b7994d88 |
children |
line wrap: on
line source
####################################################################### ## ## CGI modules ## --------------- ## ## http://www.lighttpd.net/documentation/cgi.html ## server.modules += ( "mod_cgi" ) ## ## Plain old CGI handling ## ## For PHP don't forget to set cgi.fix_pathinfo = 1 in the php.ini. ## cgi.assign = ( ".pl" => "/usr/bin/perl", ".cgi" => "", ".rb" => "/usr/bin/ruby", ".erb" => "/usr/bin/eruby", ".py" => "/usr/bin/python" ) ## ## to get the old cgi-bin behavior of apache ## ## Note: make sure that mod_alias is loaded if you uncomment the ## next line. (see modules.conf) ## #alias.url += ( "/cgi-bin" => server_root + "/cgi-bin" ) #$HTTP["url"] =~ "^/cgi-bin" { # cgi.assign = ( "" => "" ) #} ## #######################################################################