webdav

How to configure SVN to show a collection of repositories

家住魔仙堡 提交于 2021-02-11 12:33:50
问题 I want to show a collection of all repositories using mod_authz_svn. When I access it, I get a 403 error (forbidden). I found out it works fine, when not specifying AuthzSVNAccessFile /etc/apache2/dav_svn.authz , and I am seeing all my repositories, but permissions (of course) don't work anymore. Is it even possible to show a collection of repositories while using AuthzSVNAccessFile ? This is my dav_svn.authz : [groups] admin = me users = you,others [/] * = r @admin = rw [repo:/subfolder]

enabling Subversion access via Apache web server and DAV on Ubuntu

微笑、不失礼 提交于 2021-01-29 14:16:36
问题 I have an Ubuntu 20 running on a PC on my home network that I want to use as a Subversion server within my house on my local network. I have Apache web server installed as well as Subversion installed and I now want to add access through the Apache web server using the HTTP DAV protocol. I intend to use Visual Studio with the Ankh plug-in on a Windows PC with the Subversion on the Ubuntu server for storing my source code repository. What is the current way of modifying the Apache

Laravel Flysystem WebDav list directory

大城市里の小女人 提交于 2021-01-28 10:10:49
问题 I'm trying to get list of directory on WebDav through Flysystem however is it empty. I'm using Laravel Graham's Campbell integration of Flysystem: dump(Flysystem::listContents('test')); gives me empty array while dump(Flysystem::read('/test/test2.txt')); gives me content of file. Could you please help me understand what I'm doing wrong? Thank you! 来源: https://stackoverflow.com/questions/45993733/laravel-flysystem-webdav-list-directory

Configuring SVN server on Apache on Ubuntu 12.04

|▌冷眼眸甩不掉的悲伤 提交于 2021-01-03 07:01:54
问题 I'm trying to access an existing Subversion server over HTTP. My dav_svn.conf file looks like: <Location /svn> DAV svn SVNParentPath /home/svn/repos SVNListParentPath on AuthType Basic AuthName "Restricted Access" AuthUserFile /home/svn/passwdfile Require valid-user AuthzSVNAccessFile /home/svn/accessfile </Location> But when I'm trying to access "some-site/svn", I'm getting the following error: The requested URL /svn/ was not found on this server. The Apache error log shows "file does not

Configuring SVN server on Apache on Ubuntu 12.04

北战南征 提交于 2021-01-03 07:01:19
问题 I'm trying to access an existing Subversion server over HTTP. My dav_svn.conf file looks like: <Location /svn> DAV svn SVNParentPath /home/svn/repos SVNListParentPath on AuthType Basic AuthName "Restricted Access" AuthUserFile /home/svn/passwdfile Require valid-user AuthzSVNAccessFile /home/svn/accessfile </Location> But when I'm trying to access "some-site/svn", I'm getting the following error: The requested URL /svn/ was not found on this server. The Apache error log shows "file does not

Downloading files from nextcloud with python script with 2-factor authentication enabled

喜夏-厌秋 提交于 2020-08-26 05:49:32
问题 I set up a nextcloud instance and I would like to download files from there using a python script. My nextcloud instance enforces 2-factor authentication for all users and I want it to remain that way. My dream scenario would be to use the requests library, so following the docs here https://docs.nextcloud.com/server/15/developer_manual/client_apis/WebDAV/basic.html , I tried to do something like this: from requests.auth import HTTPBasicAuth r = requests.request( method='get', url='https:/

Downloading files from nextcloud with python script with 2-factor authentication enabled

人走茶凉 提交于 2020-08-26 05:47:48
问题 I set up a nextcloud instance and I would like to download files from there using a python script. My nextcloud instance enforces 2-factor authentication for all users and I want it to remain that way. My dream scenario would be to use the requests library, so following the docs here https://docs.nextcloud.com/server/15/developer_manual/client_apis/WebDAV/basic.html , I tried to do something like this: from requests.auth import HTTPBasicAuth r = requests.request( method='get', url='https:/

why Spring Security firewall rejects WebDav methods like “PROPFIND”?

那年仲夏 提交于 2020-07-23 08:04:43
问题 I've written a project by spring boot, now I'm using Milton Project to add webdav support. there is some simple example that works well. but when I add this example to my project, Spring Security Firewall rejects requests. thank you in advance for your answers. pom <dependency> <groupId>io.milton</groupId> <artifactId>milton-server-ce</artifactId> <version>2.7.2.4</version> </dependency> filter configuration @Configuration @ImportResource({"classpath*:applicationContext.xml"}) public class