welcome to ageHa, the [copyparty](https://github.com/9001/copyparty) client test site below you can find several copyparty server instances to test your clients with all the servers host the same contents unless otherwise noted ## the servers * https://cd.ocv.me/a/ is a very standard config : * `-v ./:/:r` mounts `./` (current folder) at `/` (VFS root), read-only for everyone * `-e2dsa` to scan folders for new files on startup * `-e2ts` for multimedia indexing, to show audio tags and such * https://cd.ocv.me/b/ tries to avoid search engines: * `-v .::r` (same as before; the slashes are optional) * `-e2dsa -e2ts` * `--force-js` disables HTML directory listings * https://cd.ocv.me/c/ enables filekeys: * `-v .::r:c,fk` sets the `fk` flag on the root volume for per-file autogenerated passwords * https://cd.ocv.me/d/ does not have a root filesystem, not listing any files at the top level: * `-v d1:v1:r` makes the `d1` folder available at https://cd.ocv.me/d/v1/ * `-v d2:v2:r` makes the `d2` folder available as https://cd.ocv.me/d/v2/ ### general notes * the favicon indicates which server you're on * the file listings are always available through the json API; just add `?ls` to an URL, like https://cd.ocv.me/b/d1/?ls * file listings are always available in the HTML, however *either* as HTML *or* as embedded javascript, never both -- so `?ls` is the best source for machine-readable output * most copyparty servers provide a WebDAV API, including all the above ## the contents * `d1` contains a text file * `d11` is empty * `d12` has a single png file * `d2` contains music at the top level and inside the subfolders * `d21` has an mp3, an opus, and a webm * `d22` has an mp3, and a jpg * `d3` contains music with japanese / crazy filenames * `d32` is empty * `d33` contains a folder with a very exciting filename (`qw,er;ty%20as df?gh+jkl%zxc&vbn "rty'uio&asd fgh`) and an absolutely cursed audio file inside if you manage to access it * https://cd.ocv.me/a/d3/.dragons/ contains a folder with a mojibake name (cannot be decoded as utf-8) and an mp3 file inside * the `.` makes it a hidden folder so it doesn't appear normally (for the sanity of most visitors) in total there is 6 `mp3` files (32596360 bytes), 1 `opus` file, 1 `webm` file, 1 `jpg` file, and 1 `png` file, altogether 37860396 bytes ## running the servers yourself ...is super easy! just grab [the copyparty sfx](https://github.com/9001/copyparty/releases/latest/download/copyparty-sfx.py) (all it needs is python, and ffmpeg if you want multimedia tags) and then run any of the commands below: * https://cd.ocv.me/a/ = `copyparty-sfx.py -e2dsa -e2ts -v ./:/:r` * https://cd.ocv.me/b/ = `copyparty-sfx.py -e2dsa -e2ts -v .::r --force-js` * https://cd.ocv.me/c/ = `copyparty-sfx.py -v .::r:c,fk` * https://cd.ocv.me/d/ = `copyparty-sfx.py -v d1:v1:r -v d2:v2:r`