- read-only demo server at https://a.ocv.me/pub/demo/
- docker image ╱ similar software ╱ client testbed
News: if you use rclone as a copyparty webdav client, upgrading to rclone v1.63 (just released) will give you a huge speed boost for small files
new features
- #39 hashed passwords
- instead of keeping plaintext account passwords in config files, you can now store hashed ones instead
--ah-alg
specifies algorithm; best to worst:argon2
,scrypt
,sha2
, or the defaultnone
- the default settings of each algorithm takes
0.4 sec
to hash a password, and argon2 eats256 MiB
RAM- can be adjusted with optional comma-separated args after the algorithm name; see
--help-pwhash
- can be adjusted with optional comma-separated args after the algorithm name; see
--ah-salt
is the static salt for all passwords, and is autogenerated-and-persisted if not specified--ah-cli
switches copyparty into a shell where you can hash passwords interactively- but copyparty will also autoconvert any unhashed passwords on startup and give you the values to insert into the config anyways
- #40 volume size limit
- volflag
vmaxb
specifies max size of a volume - volflag
vmaxn
specifies max number of files in a volume - example:
-v [...]:c,vmaxb=900g:c,vmaxn=20k
blocks uploads if the volume reaches 900 GiB or a total of 20480 files - good alternative to
--df
since it works per-volume
- volflag
bugfixes
- autogenerated TLS certs didn't include the mDNS name
other changes
- improved cloudflare challenge detection
- markdown edits will now trigger upload hooks