Table of Contents

apache2

apache 2.2.6

# we can comment out modules we don't want later
./configure --prefix=/usr/local/apache2 --mandir=/usr/local/man --infodir=/usr/local/info --enable-modules=all --enable-mods-shared=all

make

sudo make install

Post Install Configuration and Usage

See Also

httpd.conf

start apache

# you must specify the path to apachectl because Apple has one in another place
sudo /usr/local/apache2/bin/apachectl start

stop apache

sudo /usr/local/apache2/bin/apachectl stop