-
Hello! My goal is to have guest users have access to the root with read/write
I get this error when restarting the container: Do you know how I can specify certain rights for a specific subfolder of the share? Thanks a lot! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
nice, you almost got it right :-) I think this should work: [/] # create a volume at "/" (the webroot), which will
/w # share /w (the docker data volume)
accs:
rw: * # everyone gets read-write access, but
rwmda: test # the user "test" gets read-write-move-delete-admin
[/test] # and then create another volume, accessible at the URL "/test",
/w/test # ...and hook it up to this folder on your server's filesystem
accs:
rwmda: test and, just to explain why it works like this -- it's because sometimes you want to do more crazy stuff... like this for example: [/]
/w/public
accs:
r: *
[/admin]
/w/admin
accs:
rwmda: test
[/music]
/w/admin/shared/music
accs:
r: * this would create 3 URLs:
and here's the cool part... these two URLs would then send you into the same folder on the server: thanks for giving copyparty a try! hope you enjoy your stay :> |
Beta Was this translation helpful? Give feedback.
nice, you almost got it right :-)
I think this should work:
and, just to explain why it works like this -- it's because sometimes you want to do more crazy stuff... like this for example: