docs:mac:builds:apache2

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
docs:mac:builds:apache2 [2007/11/23 00:49] – external edit 127.0.0.1docs:mac:builds:apache2 [2008/12/19 23:19] (current) billh
Line 4: Line 4:
 ===== apache 2.2.6 ===== ===== apache 2.2.6 =====
 <code> <code>
-./configure --prefix=/usr/local/apache2 --mandir=/usr/local/man --infodir=/usr/local/info+# 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 make
  
-make install+sudo make install
 </code> </code>
  
 ===== Post Install Configuration and Usage ===== ===== Post Install Configuration and Usage =====
-<code> + 
-# edit /usr/local/apache2/conf/httpd.conf +==== See Also ==== 
-# find this line... +  * [[docs:apache_web_server:virtual_hosts]] 
-#ServerName www.example.com:80 +  * [[docs:apache_web_server:user_home_directories]] 
-# and add this...+  * [[docs:apache_web_server:changing_the_document_root]] 
 + 
 +==== httpd.conf ==== 
 +  ServerName<code>
 ServerName localhost ServerName localhost
 +</code>
 +  * DirectoryIndex<code>
 +DirectoryIndex index.html index.htm index.php index.shtml default.html default.htm
 +</code>
 +  * User/Group<code>
 +<IfModule !mpm_netware_module>
 +#
 +# If you wish httpd to run as a different user or group, you must run
 +# httpd as root initially and it will switch.  
 +#
 +# User/Group: The name (or #number) of the user/group to run httpd as.
 +# It is usually good practice to create a dedicated user and group for
 +# running httpd, as with most system services.
 +#
 +#User daemon
 +#Group daemon
 +User www
 +Group www
 +</IfModule>
 +</code>
 +  * Fancy Indexing<code>
 +# Fancy directory listings
 +Include conf/extra/httpd-autoindex.conf
 +</code>
  
-start apache+==== start apache ==== 
 +<code>
 # you must specify the path to apachectl because Apple has one in another place # you must specify the path to apachectl because Apple has one in another place
 sudo /usr/local/apache2/bin/apachectl start sudo /usr/local/apache2/bin/apachectl start
 +</code>
  
-stop apache+==== stop apache ==== 
 +<code>
 sudo /usr/local/apache2/bin/apachectl stop sudo /usr/local/apache2/bin/apachectl stop
 </code> </code>
- 
  • docs/mac/builds/apache2.1195804196.txt.gz
  • Last modified: 2008/08/03 00:25
  • (external edit)