Created
November 22, 2009 10:39
-
-
Save tedheich/240518 to your computer and use it in GitHub Desktop.
Snippet of /etc/apache2.httpd.conf in Snow Leopard
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
LoadModule dav_module libexec/apache2/mod_dav.so | |
LoadModule status_module libexec/apache2/mod_status.so | |
LoadModule autoindex_module libexec/apache2/mod_autoindex.so | |
LoadModule asis_module libexec/apache2/mod_asis.so | |
LoadModule info_module libexec/apache2/mod_info.so | |
LoadModule cgi_module libexec/apache2/mod_cgi.so | |
LoadModule dav_fs_module libexec/apache2/mod_dav_fs.so | |
LoadModule vhost_alias_module libexec/apache2/mod_vhost_alias.so | |
LoadModule negotiation_module libexec/apache2/mod_negotiation.so | |
LoadModule dir_module libexec/apache2/mod_dir.so | |
LoadModule imagemap_module libexec/apache2/mod_imagemap.so | |
LoadModule actions_module libexec/apache2/mod_actions.so | |
LoadModule speling_module libexec/apache2/mod_speling.so | |
LoadModule userdir_module libexec/apache2/mod_userdir.so | |
LoadModule alias_module libexec/apache2/mod_alias.so | |
LoadModule rewrite_module libexec/apache2/mod_rewrite.so | |
LoadModule bonjour_module libexec/apache2/mod_bonjour.so | |
#LoadModule php5_module libexec/apache2/libphp5.so | |
#LoadModule fastcgi_module libexec/apache2/mod_fastcgi.so | |
<IfModule !mpm_netware_module> | |
<IfModule !mpm_winnt_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 _www | |
Group _www | |
</IfModule> | |
</IfModule> | |
# 'Main' server configuration |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment