Parent Directory | Revision Log
since we use a local version of dot ( previous commit ), we can simplify the setup here
1 | <% |
2 | path_data_directory = "/var/lib/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 png files locally created locally must be accessible |
23 | <Directory <%= path_data_directory %>/webdot> |
24 | <FilesMatch \.png$> |
25 | Order allow,deny |
26 | Allow from all |
27 | </FilesMatch> |
28 | </Directory> |
29 | |
30 | Alias /graphs/ <%= path_data_directory %>/graphs/ |
31 | <Directory <%= path_data_directory %>/graphs> |
32 | |
33 | <FilesMatch \.png$> |
34 | Order allow,deny |
35 | Allow from all |
36 | </FilesMatch> |
37 | </Directory> |
ViewVC Help | |
Powered by ViewVC 1.1.30 |