skipjack DOT info

I live the way I type; fast, with a lot of mistakes.

Lighttpd and bugzilla

installing bugzilla on lighttpd isn't covered so here is the 4 steps you need to do it.

1- Install bugzilla in the http server root.
2- Enable mod_cgi server module:
-------------
/etc/lighttpd/lighttpd.conf
server.modules += ("mod_cgi")
-------------
3- Add the following lines to the /etc/lighttpd/lighttpd.conf
-------------
/etc/lighttpd/lighttpd.conf
$HTTP["url"] =~ "^/bugzilla/.*" {
# disable directory listings
dir-listing.activate = "disable"
# only allow cgi's in this directory
cgi.assign = ( ".cgi" => "" )
index-file.names = ( "index.cgi" )

}
-------------

4- restart lighttpd ...




Comments:

Post a Comment:
Comments are closed for this entry.

 

.