Diff for /elwix/config/etc/default/lighttpd/conf.d/cgi.conf between versions 1.1 and 1.2

version 1.1, 2013/10/14 15:19:37 version 1.2, 2014/01/05 23:14:24
Line 0 Line 1
   #######################################################################
   ##
   ##  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" => "/usr/bin/perl",
                                  ".rb"  => "/usr/bin/ruby",
                                  ".erb" => "/usr/bin/eruby",
                                  ".py"  => "/usr/local/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 = ( "" => "" )
   #}
   
   ##
   #######################################################################

Removed from v.1.1  
changed lines
  Added in v.1.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>