Created
July 26, 2009 11:27
-
-
Save nashfive/155612 to your computer and use it in GitHub Desktop.
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
#!/bin/sh | |
# Download the latest httpd archive from your favorite mirror | |
# Configure Apache | |
./configure \ | |
--enable-layout=Darwin \ | |
--enable-mods-shared=all \ | |
--with-mpm=prefork \ | |
--disable-unique-id \ | |
--enable-dav \ | |
--enable-logio \ | |
--with-included-apr \ | |
--disable-userdir \ | |
--enable-rewrite \ | |
--enable-so \ | |
--enable-vhost-alias \ | |
--silent | |
# Build and install | |
make | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment