Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Apache2 WebDAV und mod_auth_pam für Userverzeichnisse
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Deutsches Forum (German)
View previous topic :: View next topic  
Author Message
.maverick
Apprentice
Apprentice


Joined: 29 Jan 2004
Posts: 159
Location: Bonn

PostPosted: Fri Feb 25, 2005 7:36 pm    Post subject: Apache2 WebDAV und mod_auth_pam für Userverzeichnisse Reply with quote

Code:

<IfModule mod_auth_pam.c>
<IfModule mod_dav.c>
<IfModule mod_dav_fs.c>
AliasMatch "^/~*/private/webdav" /home/$1
AliasMatch "^/~*/private"       /home/$1
AliasMatch "^/~*/webdav"        /home/$1/public
AliasMatch "^/~*"               /home/$1/public
<LocationMatch "^/~*/private/webdav">
        AuthType Basic
        AuthName "Private WebDAV for $1"
        AllowOverride None
        Require user $1
        Dav on
        ForceType text/plain
</LocationMatch>
<LocationMatch "^/~*/private">
        AuthType Basic
        AuthName "Private for \$1"
        AllowOverride None
        Require user $1
        Options +Indexes
</LocationMatch>
<LocationMatch "^/~*/webdav">
        AuthType Basic
        AuthName "WebDAV for $1"
        AllowOverride None
        Require user $1
        <LimitExcept GET>
               Require valid-user
        </LimitExcept>
        Dav on
        ForceType text/plain
</LocationMatch>
<DirectoryMatch "^/home/*/public">
        AllowOverride None
        Options Indexes
</DirectoryMatch>
</IfModule>
</IfModule>
</IfModule>


Warum kommt mit dieser Config bei jeder Seite "Not found" und ist die Datei überhaupt zu gebrauchen oder hab ich generell irgendwas falsch gemacht?
Back to top
View user's profile Send private message
.maverick
Apprentice
Apprentice


Joined: 29 Jan 2004
Posts: 159
Location: Bonn

PostPosted: Tue Mar 01, 2005 9:31 am    Post subject: Reply with quote

Keine Idee?
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Deutsches Forum (German) All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum