diff options
author | cbdev <cb@cbcdn.com> | 2022-05-07 15:42:29 +0200 |
---|---|---|
committer | cbdev <cb@cbcdn.com> | 2022-05-07 15:42:29 +0200 |
commit | 78e06330a0663d07a5c0dde3be398d707b13010f (patch) | |
tree | 5d084f1038b6226a7e803d720fe2cdd67e952293 | |
parent | 6d5ca0f46c55519aff239684639c5278d3bd2425 (diff) | |
download | cargohold-78e06330a0663d07a5c0dde3be398d707b13010f.tar.gz cargohold-78e06330a0663d07a5c0dde3be398d707b13010f.tar.bz2 cargohold-78e06330a0663d07a5c0dde3be398d707b13010f.zip |
Update README
-rw-r--r-- | README.md | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -42,14 +42,14 @@ The database stores the the following data for each alias * *Real path*: The on-disk directory name where, when prepended with both the `fileroot` and optionally, the `userdir`, the data is stored. Multiple aliases may point to the same real path. * *Access level*: The access level this alias permits to the real path. A string consisting of any of the characters *c* (*C*reate / Upload), *r* (*R*etrieve / Read), *u* (*U*pdate), *d* (*D*elete) in any order. * *Storage limit*: Per-alias storage limit (applied when uploading) -* *Display mode*: Parameter +* *Display mode*: Parameter to the file-listing interface, customizing end-user layout. The storage limit for each alias (applied when uploading files) is calculated as the minimum of the following parameters -* Global disk size limit +* Global disk free space * `global_limit` in `backend/config.py` -* The per-user limit -* The per-alias limit +* The per-user limit minus the disk size currently used by the user, if the per-user limit is not `0` +* The per-alias limit minus the disk size currently used by the files in the alias, if the per-alias limit is not 0 / NULL ## Interface |