/[adm]/puppet/modules/bugzilla/templates/webapp_bugzilla.conf
ViewVC logotype

Contents of /puppet/modules/bugzilla/templates/webapp_bugzilla.conf

Parent Directory Parent Directory | Revision Log Revision Log


Revision 289 - (show annotations) (download)
Thu Nov 18 19:59:40 2010 UTC (13 years, 5 months ago) by dmorgan
File size: 849 byte(s)
Add vhost and webapps.d files for bugzilla
1 <%
2 path_data_directory = "/usr/lib" + ( architecture == "x86_64" ? '64' : '') + "/bugzilla"
3 %>
4
5 <Directory /usr/share/bugzilla/www>
6 Order allow,deny
7 Allow from all
8
9 Options ExecCGI
10 DirectoryIndex index.cgi
11 </Directory>
12
13 # The duplicates.rdf must be accessible, as it is used by
14 # duplicates.xul
15 <Directory <%= path_data_directory %>>
16 <Files duplicates.rdf>
17 Order allow,deny
18 Allow from all
19 </Files>
20 </Directory>
21
22 # The dot files must be accessible to the public webdot server
23 # The png files locally created locally must be accessible
24 <Directory <%= path_data_directory %>/webdot>
25 <FilesMatch \.dot$>
26 Order deny,allow
27 Deny from all
28 Allow from research.att.com
29 </FilesMatch>
30
31 <FilesMatch \.png$>
32 Order allow,deny
33 Allow from all
34 </FilesMatch>
35 </Directory>

  ViewVC Help
Powered by ViewVC 1.1.30