From 78b8a73ea5883f66ce0433e3b7461054998f7f6a Mon Sep 17 00:00:00 2001 From: Emi Simpson Date: Tue, 22 Nov 2022 16:51:54 -0500 Subject: [PATCH] Add a note explaining that expired files aren't immediately removed --- templates/index.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/templates/index.html b/templates/index.html index b115d52..8b8c7c5 100644 --- a/templates/index.html +++ b/templates/index.html @@ -17,6 +17,9 @@ Files can be set to expire sooner by adding an "expires" parameter (in hours) OR by setting "expires" to a timestamp in epoch milliseconds curl -F'file=@yourfile.png' -F'expires=1681996320000' {{ fhost_url }} +Expired files won't be removed immediately, but will be removed as part of +the next purge. + {% set max_size = config["MAX_CONTENT_LENGTH"]|filesizeformat(True) %} Maximum file size: {{ max_size }} Not allowed: {{ config["FHOST_MIME_BLACKLIST"]|join(", ") }}