Trying webdav with copyparty, authorization issue

What app is this about, and its version: Copyparty, v1.20.13~ynh1
What YunoHost version are you running: 12.1.39
What type of hardware are you using: Old laptop or computer

Describe your issue

:united_kingdom: I seemingly can’t access a copyparty folder via webdav.

I tried setting up the webdav connection with nextcloud and it worked flawlessly. On copyparty on the other hand the first connection seems to be working as well (i can see my documents) but it seems that I can only see them because of the volflag r: *.

When removing the volflag r: * I become unable to access the copyparty directory i have set up, even though the account used for the webdav connection has the rights to do so.

I executed these commands as showed in domain.tld/?hc :

rclone config create domain-dav webdav url=https://domain.tld vendor=owncloud pacer_min_sleep=0.01ms user=dave pass=hunter2
rclone mount --vfs-cache-mode writes --dir-cache-time 5s domain-dav: mp

I used the copyparty example config ( copyparty/docs/example.conf at hovudstraum · 9001/copyparty · GitHub ).
I just want to add that I’m new to self hosting or hosting in general and I may be lacking.

:france: Je ne parviens pas Ă  acceder Ă  un dossier sur copyparty avec webdav.

La connexion fonctionne et je peux voir mes documents, mais il semble que ce ne soit pas grâce aux accès du compte utilisé pour la connexion puisque je ne peux voir que les dossiers avec le volflag r: *.

Quand le volflag r: * est retiré le dossier disparaît même si les droits du compte qui y accède sont A.

Voici les commandes utilisée pour se connecter via webdav

rclone config create domain-dav webdav url=https://domain.tld vendor=owncloud pacer_min_sleep=0.01ms user=dave pass=hunter2
rclone mount --vfs-cache-mode writes --dir-cache-time 5s domain-dav: mp

Je souhaite simplement ajouter que je suis un débutant dans l’auto-hébergement et le monde linux en général et que mes connaissances sont assez limitées.

user.config:

# make sure to chown -R copyparty:copyparty /var/www/copyparty/config after your editions

#create users:

[accounts]
  admin: password1   # username: password
  invite: password2        # profile invite
  sync: password3        # profile

#(this will replace any folder called “music” in the webroot)

[/music]
  /home/yunohost.app/copyparty/music
  accs:
    r: *

#and a folder where anyone can upload, but nobody can see the contents
[/dump]
  /home/yunohost.app/copyparty/dump
  accs:
    w: *
  flags:
    e2d     # the e2d volflag enables the uploads database
    nodupe  # the nodupe volflag rejects duplicate uploads
    # (see --help-flags for all available volflags to use)
  # and a folder where anyone can upload

# and anyone can access their own uploads, but nothing else
[/sharex]
  /home/yunohost.app/copyparty/sharex
  accs:
    wG: *        # wG = write-upget = see your own uploads only
    # read-write-modify-delete for user invite
    rwmd: invite
  flags:
    e2d
    d2t
    fk: 4
    # volflag “e2d” enables the uploads database,
    # “d2t” disables multimedia parsers (in case the uploads are malicious),
    # “dthumb” disables thumbnails (same reason),
    # “fk” enables filekeys (necessary for upget permission) (4 chars long)
    # – note that its fine to combine all the volflags on
    #    one line because only the last volflag has an argument

[/sync]
  /home/yunohost.app/copyparty/sync-boox
  accs:
    A: admin, sync    # the user “joe” gets all permissions read,write,move,delete,admin,dotfiles

Share relevant logs or error messages

I don’t know what to put here