2 # DocumentRoot: The directory out of which you will serve your
3 # documents. By default, all requests are taken from this directory, but
4 # symbolic links and aliases may be used to point to other locations.
6 DocumentRoot "/home/services/httpd/html"
8 # Each directory to which Apache has access can be configured with respect
9 # to which services and features are allowed and/or disabled in that
10 # directory (and its subdirectories).
12 # First, we configure the "default" to be a very restrictive set of
16 Options FollowSymLinks
18 <IfModule mod_authz_host.c>
21 <IfModule mod_access_compat.c>
28 # - .htaccess and .htpasswd files
29 # - backup files from being viewed
31 <FilesMatch "^(\.ht.*|\.user\.ini|.*~|.*,v)$">
32 <IfModule mod_authz_host.c>
35 <IfModule mod_access_compat.c>
42 # - version control directories
43 <DirectoryMatch "/(\.(svn|git|hg|bzr)|CVS)/?">
44 <IfModule mod_authz_host.c>
47 <IfModule mod_access_compat.c>
54 # This should be changed to whatever you set DocumentRoot to.
56 <Directory "/home/services/httpd/html">
58 # Possible values for the Options directive are "None", "All",
59 # or any combination of:
60 # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
62 # Note that "MultiViews" must be named *explicitly* --- "Options All"
63 # doesn't give it to you.
65 # The Options directive is both complicated and important. Please see
66 # http://httpd.apache.org/docs/2.2/mod/core.html#options
67 # for more information.
69 Options Indexes FollowSymLinks
72 # AllowOverride controls what directives may be placed in .htaccess files.
73 # It can be "All", "None", or any combination of the keywords:
74 # Options FileInfo AuthConfig Limit
79 # Controls who can get stuff from this server.
81 <IfModule mod_authz_host.c>
84 <IfModule mod_access_compat.c>