]> git.pld-linux.org Git - packages/apache.git/blob - apache-common.conf
- add SNI example
[packages/apache.git] / apache-common.conf
1
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.
5 #
6 DocumentRoot "/home/services/httpd/html"
7
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).
11 #
12 # First, we configure the "default" to be a very restrictive set of
13 # features.
14 #
15 <Directory />
16         Options FollowSymLinks
17         AllowOverride None
18         <IfModule mod_authz_host.c>
19                 Require all denied
20         </IfModule>
21         <IfModule mod_access_compat.c>
22                 Order deny,allow
23                 Deny from all
24         </IfModule>
25 </Directory>
26
27 #
28 # This should be changed to whatever you set DocumentRoot to.
29 #
30 <Directory "/home/services/httpd/html">
31         #
32         # Possible values for the Options directive are "None", "All",
33         # or any combination of:
34         #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
35         #
36         # Note that "MultiViews" must be named *explicitly* --- "Options All"
37         # doesn't give it to you.
38         #
39         # The Options directive is both complicated and important.  Please see
40         # http://httpd.apache.org/docs/2.2/mod/core.html#options
41         # for more information.
42         #
43         Options Indexes FollowSymLinks
44
45         #
46         # AllowOverride controls what directives may be placed in .htaccess files.
47         # It can be "All", "None", or any combination of the keywords:
48         #   Options FileInfo AuthConfig Limit
49         #
50         AllowOverride None
51
52         #
53         # Controls who can get stuff from this server.
54         #
55         <IfModule mod_authz_host.c>
56                 Require all granted
57         </IfModule>
58         <IfModule mod_access_compat.c>
59                 Order allow,deny
60                 Allow from all
61         </IfModule>
62
63 </Directory>
This page took 0.051959 seconds and 3 git commands to generate.