blob: 25306b1e92d34974b50bfb0988706720da5f8d5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<%
path_data_directory = lib_dir + "/bugzilla"
%>
<VirtualHost *:80>
ServerName bugs.<%= domain %>
DocumentRoot /usr/share/bugzilla/www
Alias /bugzilla/data <%= path_data_directory %>
Alias /bugzilla /usr/share/bugzilla/www
<Location />
Allow from all
</Location>
</VirtualHost>
|