set cache_control_interval in hours instead of milliseconds

This commit is contained in:
teddit
2021-11-27 14:57:38 +01:00
parent 9783091216
commit c9637524ec
3 changed files with 10 additions and 6 deletions

View File

@@ -33,7 +33,7 @@ const config = {
? (JSON.parse(process.env.DOMAIN_REPLACEMENTS).map(([p, r]) => [new RegExp(p, 'gm'), r]))
: [], // Replacements for domains in outgoing links. Tuples with regular expressions to match, and replacement values. This is in addition to user-level configuration of privacyDomains.
cache_control: process.env.CACHE_CONTROL !== 'true' || true, // If true, teddit will automatically remove all cached static files. By default this is set to true.
cache_control_interval: process.env.CACHE_CONTROL_INTERVAL || 1000 * 60 * 60 * 24, // How often the cache directory for static files is emptied (in milliseconds). Requires cache_control to be true. Default is every 24 hours.
cache_control_interval: process.env.CACHE_CONTROL_INTERVAL || 24, // How often the cache directory for static files is emptied (in hours). Requires cache_control to be true. Default is every 24 hours.
post_media_max_heights: {
/**
* Sets the max-height value for images and videos in posts.