ubuntuusers.de

Unbenannt

Datum:
8. Oktober 2009 13:14
Code:
 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
Alias /kfc /var/www/kfc
<Directory /var/www/kfc>
        Order Deny,Allow
        Allow from all
        AllowOverride All
        Options +Indexes +FollowSymlinks
</Directory>

<Location /kfc>
  AuthType Basic
  AuthName "kfc.de dev5"
  AuthUserFile /etc/apache2/passwd
  AuthGroupFile /etc/apache2/groups
  require group kfc
</Location>

Alias /dav/kfc /var/www/kfc
<Location /dav/kfc>
  DAV On
  AuthType Basic
  AuthName "kfc.de DAV"
  AuthUserFile /etc/apache2/passwd
  AuthGroupFile /etc/apache2/groups
  require group kfc
</Location>