From charlesreid1

Revision as of 06:10, 5 October 2010 by Admin (talk | contribs)

VirtualServer examples page

http://httpd.apache.org/docs/2.0/vhosts/examples.html


Installation

Configuration

I have configured Apache 2.0.63, 2.2.11, 2.2.15, and 2.2.16 using this configure line (or something similar):

./configure \
 --prefix=/path/to/apache \
 --with-included-apr \
 --enable-mods-shared="all ssl cache proxy authn_alias mem_cache file_cache charset_lite dav_lock disk_cache mod_dav mod_dav_svn"

The long list of "mods-shared" is to enable shared modules to be built, for a variety of different things (e.g. mod_dav_svn allows for the apache server to serve as an SVN repository server. Go here for more information: http://httpd.apache.org/docs/2.0/mod/


Dependencies

Apache did not have any dependencies when I built it.