1# access.conf: Global access configuration
2# Online docs at http://www.apache.org/
3
4# This file defines server settings which affect which types of services
5# are allowed, and in what circumstances.
6
7# Each directory to which Apache has access, can be configured with respect
8# to which services and features are allowed and/or disabled in that
9# directory (and its subdirectories).
10
11# Originally by Rob McCool
12
13# /usr/local/etc/httpd/ should be changed to whatever you set ServerRoot to.
14<Directory _TESTDIR_/cgi-bin>
15Options Indexes FollowSymLinks ExecCGI
16</Directory>
17
18#<Directory _TESTDIR_/htdocs/cookies>
19#Options Indexes FollowSymLinks ExecCGI
20#CookieTracking on
21#</Directory>
22
23# This should be changed to whatever you set DocumentRoot to.
24
25<Directory _TESTDIR_/htdocs>
26
27# This may also be "None", "All", or any combination of "Indexes",
28# "Includes", "FollowSymLinks", "ExecCGI", or "MultiViews".
29
30# Note that "MultiViews" must be named *explicitly* --- "Options All"
31# doesn't give it to you (or at least, not yet).
32
33Options Indexes FollowSymLinks ExecCGI
34
35# This option allows you to turn on the XBitHack behavior, which allows you
36# to make text/html server-parsed by activating the owner x bit with chmod.
37# This directive may be used wherever Options may, and has three
38# possible arguments: Off, On or Full. If set to full, Apache will also
39# add a Last-Modified header to the document if the group x bit is set.
40
41# Unless the server has been compiled with -DXBITHACK, this function is
42# off by default. To use, uncomment the following line:
43
44#XBitHack Full
45
46# This controls which options the .htaccess files in directories can
47# override. Can also be "None", or any combination of "Options", "FileInfo",
48# "AuthConfig", and "Limit"
49
50AllowOverride All
51
52# Controls who can get stuff from this server.
53
54<Limit GET>
55order allow,deny
56allow from all
57</Limit>
58
59</Directory>
60
61# You may place any other directories you wish to have access
62# information for after this one.
63
64