Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nashfive/155612 to your computer and use it in GitHub Desktop.
Save nashfive/155612 to your computer and use it in GitHub Desktop.
#!/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