Removed "t" for terabytes in cache sizing.

Former instruction "They accept the standard nginx notation for sizes (k/m/g/t)" tests incorrect. "t" is not supported.
This commit is contained in:
HumanJHawkins 2019-10-14 16:56:14 -07:00 committed by GitHub
parent c7cde312b8
commit 6bb3d94668
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -112,7 +112,7 @@ In addition, there is an environment variable to control the max cache age.
CACHE_MAX_AGE 3560d
````
You can override these at run time by adding the following to your docker run command. They accept the standard nginx notation for sizes (k/m/g/t) and durations (m/h/d).
You can override these at run time by adding the following to your docker run command. They accept the standard nginx notation for sizes (k/m/g) and durations (m/h/d).
```
-e CACHE_MEM_SIZE=4000m -e CACHE_DISK_SIZE=1000g -e CACHE_MAX_AGE 3560d