InstallingAboutUsOnOSX/apache
This is one step in the InstallingAboutUsOnOSX process.
Below is what Brandon uses, which creates a hand compiled apache2 in /www
apache
cd /www/build curl -O http://apache.mirrors.tds.net/httpd/httpd-2.2.6.tar.bz2 # or http://download.filehat.com/apache/httpd/httpd-2.2.6.tar.bz2 tar jxvf httpd-2.2.6.tar.bz2 cd httpd-2.2.6 ./configure --prefix=/www \ --enable-modules=most \ --enable-mods-shared=all \ --enable-info \ --enable-rewrite \ --enable-so \ --with-program-name=apache2 \ --enable-ssl \ --enable-header \ --enable-proxy \ --enable-proxy-http \ --with-ssl=/opt/local make make install sudo /www/bin/apache2 -k start # start apache
