blob: a37760d8ce769aa899d992326017230f0d5d200b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
<%
path_data_directory = lib_dir + "/bugzilla"
%>
<Directory /usr/share/bugzilla/www>
Order allow,deny
Allow from all
Options ExecCGI
DirectoryIndex index.cgi
</Directory>
# The duplicates.rdf must be accessible, as it is used by
# duplicates.xul
<Directory <%= path_data_directory %>>
<Files duplicates.rdf>
Order allow,deny
Allow from all
</Files>
</Directory>
# The dot files must be accessible to the public webdot server
# The png files locally created locally must be accessible
<Directory <%= path_data_directory %>/webdot>
<FilesMatch \.dot$>
Order deny,allow
Deny from all
Allow from research.att.com
</FilesMatch>
<FilesMatch \.png$>
Order allow,deny
Allow from all
</FilesMatch>
</Directory>
|