Guest User

Untitled

a guest
Aug 14th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. server.username = "www-data"
  2. server.groupname = "www-data"
  3.  
  4. [... etc. ...]
  5.  
  6. $HTTP["url"] =~ "^/webdav/" {
  7. webdav.activate = "enable"
  8. webdav.is-readonly = "disable"
  9. webdav.sqlite-db-name = "/var/www/etc/lighttpd.webdav.db"
  10. auth.backend = "htpasswd"
  11. auth.backend.htpasswd.userfile = "/var/www/etc/.htaccess"
  12. auth.require = (
  13. "" => ( "method" => "basic",
  14. "realm" => "Restricted.",
  15. "require" => "valid-user"
  16. )
  17. )
  18. }
Add Comment
Please, Sign In to add comment