Guest User

Untitled

a guest
Sep 14th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. different rights for different users in same directory on apache server
  2. <Directory /var/www/html/uploads>
  3. DAV On
  4. AuthType Basic
  5. AuthName "WebDAV access"
  6. AuthUserFile /var/www/html/uploads/.passwdfile
  7. AllowOverride None
  8. Options None
  9. <LimitExcept GET>
  10. Require user testUserGet testUserPut
  11. </LimitExcept>
  12. <LimitExcept PUT>
  13. Require user testUserPut
  14. </LimitExcept>
  15. Require valid-user
  16. </Directory>
Add Comment
Please, Sign In to add comment