apache - WebDAV configuration, getting error related to require valid-user using lazy sessions -


i'm trying configure webdav environment. however, keep getting error: htaccess: require valid-user not given valid session, using lazy sessions?

looking @ fiddler, see http code 500.

all google searches seem include references shibboleth, have installed, not calling in path structure.

<directory "/path/to/webdav">   options indexes multiviews followsymlinks   allowoverride none   order allow,deny   allow </directory>  <virtualhost *:443>     servername my.domain.com     documentroot "/path/to/root"             ...     alias /aaa/bbb /path/to/webdav/aaa/bbb     <location /aaa/bbb>             options indexes             dav on             authtype basic             authname "webdav"             authuserfile /path/to/webdav.pwd             require valid-user     </location> </virtualhost> 

solution below...

essentially, there's blanket requirement shibboleth session in last lines of host configuration.

<pathregex regex=".*" authtype="shibboleth" requiresession="true" requiresessionwith="intranet" /> 

i had add exception on webdav folder before lines.

<path name="webdav" authtype="shibboleth" requiresession="false" /> 

Comments

Popular posts from this blog

css - SVG using textPath a symbol not rendering in Firefox -

Java 8 + Maven Javadoc plugin: Error fetching URL -

node.js - How to abort query on demand using Neo4j drivers -