This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server.port = 3000 | |
# server.errorlog = CWD + "/log/lighttpd.error.log" | |
# accesslog.filename = CWD + "/log/lighttpd.access.log" | |
server.modules = ( "mod_rewrite", | |
"mod_access", | |
"mod_fastcgi", | |
"mod_userdir", | |
"mod_accesslog" ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Build lighty and php for leopard | |
curl -O ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-6.6.tar.gz | |
tar xzvf pcre-6.6.tar.gz | |
cd pcre-6.6 | |
./configure --prefix=/usr/local CFLAGS=-O1 | |
make | |
sudo make install | |
curl -O http://lighttpd.net/download/lighttpd-1.4.11.tar.gz |
NewerOlder