Hello,
I am new to web administration, trying to enabling WebDAV on apache 2.2 webserver running on a RHEL Server [WEBServer1]. We have two destination applications that access this Web server [WEBServer1]. Both Destination applications are hosted on different data centers.
1st Application which push files to WEBServer1 under /Webfiles, using put request, so its mandatory to enable webdav.
2nd application which will access files on WEBServer1 from the same location /Webfiles - Need to disable WebDAV authentication for this Source IP's or ignore authentication for get request is possible ?
Please suggest how can I achieve it.
here is the existing Virtual host configuration for webdav on server
<VirtualHost *:80>
ServerAdmin root@localhost
DocumentRoot /var/ <Directory /var/ Options Indexes MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
Alias /Webfiles /var/
<Location /Webfiles>
DAV On
AuthType Basic
AuthName "webdav"
AuthUserFile /var/ Require valid-user
</Location>
</VirtualHost>
Thanks,
I am new to web administration, trying to enabling WebDAV on apache 2.2 webserver running on a RHEL Server [WEBServer1]. We have two destination applications that access this Web server [WEBServer1]. Both Destination applications are hosted on different data centers.
1st Application which push files to WEBServer1 under /Webfiles, using put request, so its mandatory to enable webdav.
2nd application which will access files on WEBServer1 from the same location /Webfiles - Need to disable WebDAV authentication for this Source IP's or ignore authentication for get request is possible ?
Please suggest how can I achieve it.
here is the existing Virtual host configuration for webdav on server
<VirtualHost *:80>
ServerAdmin root@localhost
DocumentRoot /var/ <Directory /var/ Options Indexes MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
Alias /Webfiles /var/
<Location /Webfiles>
DAV On
AuthType Basic
AuthName "webdav"
AuthUserFile /var/ Require valid-user
</Location>
</VirtualHost>
Thanks,