Tagged Questions
0
votes
1answer
821 views
nginx webdav server with auth request
My nginx.conf:
location ~ ^/api/(.*)$ {
alias /home/username/apidav/$remote_user/$1;
client_body_temp_path /var/www/path/;
client_max_body_size 50m;
dav_methods ...
0
votes
0answers
205 views
Apache2 WebDAV: multiple users with different permissions
I am trying to create a WebDAV share on my OS X 10.7 machine's (The standard OS X, without the OS X Server software) Apache2 implementation. I have currently been successful in creating a ...
1
vote
1answer
290 views
apache2 Webdav using VirtualDocumentRoot
I'm trying to get up dynamical WebDav on my virtual hosts
<VirtualHost *:80>
# http://www.example.com/test.txt -> /var/www/example.com/www/test.txt
VirtualDocumentRoot ...
2
votes
6answers
696 views
Authentication in Apache2 with mod_dav_svn
I'm having some trouble setting up authentication in Apache2 for a SVN repository that's being served using mod_dav_svn.
Here is my Apache config for the directory:
<Location /svn>
DAV svn
...
1
vote
2answers
2k views
Authenticating with Exchange WebDAV / Outlook Web Access
I'm having issues accessing Exchange WebDav / OWA from any machine but the IIS & Exchange server.
We've got a small development domain running Windows 2003. One server (which we'll call IIS_box) ...