From: Mark B. <ma...@hu...> - 2007-02-11 02:08:27
|
Dieter, Attached are notes for configuring Lighttpd to run Sql-Ledger. Potential README material. m -------------- next part -------------- Sat Feb 10 20:34:48 EST 2007 Mark Bucciarelli 1. Make sure mod_cgi and mod_alias are in server.modules list. 2. Add Sql-Ledger directory as an alias, ie: alias_url = ( "/sql-ledger/" => "/usr/local/sql-ledger/" ) 3. Setup Perl as hander for *.pl files. cgi.assign = ( ".pl" => "/usr/bin/perl" ) Note: server.follow-symlink is on by default in lighttpd. 4. Deny access to users directory. $HTTP["url"] =~ "/sql-ledger/users" { url.access-deny = ("") } |