Apache 2.2 WebDav Anonymous access -
i sorta have http config working apache 2.2 allows webdav. @ least can use winscp client attach dav account listed below.
but have older clunkier clients may work anonymous access. , not working.
- windows 7 (map drive), pops credentials not log in.
- falconview (probably understands anonymous login
any idea doing wrong here anon access? novice @ httpd.conf
(the environment variable ${egpl_jobspath} resolves windows path:
e.g. f:\jobs
alias /jobs ${egpl_jobspath} <ifmodule dav_lock_module> davlockdb "${egpl_jobspath}" </ifmodule> <directory "${egpl_jobspath}"> header set access-control-allow-origin "*" dav on require valid-user options indexes followsymlinks order allow,deny allow <limitexcept propfind options report> require user me </limitexcept> authtype basic authname dav authuserfile conf/users.passwords </directory>
the way work, turn off authentication , leave webdav folder open world. still hear people better ideas:
alias /jobs ${egpl_jobspath} <ifmodule dav_lock_module> davlockdb "${egpl_librarianpath}" </ifmodule> <directory "${egpl_jobspath}"> header set access-control-allow-origin "*" dav on </directory>
Comments
Post a Comment