~ubuntu-branches/ubuntu/lucid/bugzilla/lucid

« back to all changes in this revision

Viewing changes to debian/examples/basic.conf

  • Committer: Bazaar Package Importer
  • Author(s): Raphael Bossek
  • Date: 2009-11-29 13:56:03 UTC
  • mfrom: (9.1.11 sid)
  • Revision ID: james.westby@ubuntu.com-20091129135603-yn5lbfhxxvz8jvjo
Tags: 3.2.5.1-2
Fixed dash compatibility within ../bugzilla3/lib/checksetup.pl.
Closes: #558238

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#<VirtualHost *:80>
2
 
Alias /bugzilla3/ /usr/share/bugzilla3/web/
3
 
 
4
 
<Directory "/usr/share/bugzilla3/web">
5
 
        AllowOverride none
6
 
        Order allow,deny
7
 
        Allow from all
8
 
</Directory>
9
 
 
10
 
<Directory "/usr/lib/cgi-bin/bugzilla3">
11
 
        AddHandler cgi-script cgi
12
 
        DirectoryIndex index.cgi
13
 
        Options +Indexes +ExecCGI -MultiViews +SymLinksIfOwnerMatch +FollowSymLinks
14
 
        AllowOverride None
15
 
        Order allow,deny
16
 
        Allow from all
17
 
</Directory>
18
 
 
19
 
<Directory "/var/lib/bugzilla3/data">
20
 
        Options FollowSymLinks
21
 
        AllowOverride None
22
 
        Order allow,deny
23
 
        Allow from all
24
 
</Directory>
 
2
    Alias /bugzilla3 /usr/share/bugzilla3/web
 
3
 
 
4
    <Directory "/usr/share/bugzilla3/web">
 
5
        AddHandler cgi-script cgi
 
6
        DirectoryIndex index.cgi
 
7
        Options +Indexes +ExecCGI -MultiViews +SymLinksIfOwnerMatch +FollowSymLinks
 
8
        AllowOverride None
 
9
        Order allow,deny
 
10
        Allow from all
 
11
    </Directory>
 
12
 
 
13
    <Directory "/usr/share/bugzilla3/web/data">
 
14
        Options +FollowSymLinks -Indexes
 
15
        AllowOverride None
 
16
        Order allow,deny
 
17
        Allow from all
 
18
    </Directory>
 
19
 
 
20
    <Directory "/usr/share/bugzilla3/web/js">
 
21
        Options +FollowSymLinks -Indexes
 
22
        AllowOverride None
 
23
        Order allow,deny
 
24
        Allow from all
 
25
    </Directory>
 
26
 
 
27
    <Directory "/usr/share/bugzilla3/web/skins">
 
28
        Options +FollowSymLinks -Indexes
 
29
        AllowOverride None
 
30
        Order allow,deny
 
31
        Allow from all
 
32
    </Directory>
25
33
#</VirtualHost>