Apache: Difference between revisions
From charlesreid1
No edit summary |
No edit summary |
||
| Line 3: | Line 3: | ||
http://httpd.apache.org/docs/2.0/vhosts/examples.html | 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): | |||
<syntaxhighlight lang="bash"> | |||
./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" | |||
</syntaxhighlight> | |||
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. | |||
Revision as of 06:10, 5 October 2010
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.