diff options
Diffstat (limited to 'server/initializers/constants.ts')
-rw-r--r-- | server/initializers/constants.ts | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/server/initializers/constants.ts b/server/initializers/constants.ts index 40f86a30d..5fe7d416c 100644 --- a/server/initializers/constants.ts +++ b/server/initializers/constants.ts | |||
@@ -500,7 +500,10 @@ const STATIC_DOWNLOAD_PATHS = { | |||
500 | } | 500 | } |
501 | 501 | ||
502 | // Cache control | 502 | // Cache control |
503 | let STATIC_MAX_AGE = '2h' | 503 | let STATIC_MAX_AGE = { |
504 | SERVER: '2h', | ||
505 | CLIENT: '30d' | ||
506 | } | ||
504 | 507 | ||
505 | // Videos thumbnail size | 508 | // Videos thumbnail size |
506 | const THUMBNAILS_SIZE = { | 509 | const THUMBNAILS_SIZE = { |
@@ -604,7 +607,7 @@ if (isTestInstance() === true) { | |||
604 | REMOTE_SCHEME.HTTP = 'http' | 607 | REMOTE_SCHEME.HTTP = 'http' |
605 | REMOTE_SCHEME.WS = 'ws' | 608 | REMOTE_SCHEME.WS = 'ws' |
606 | 609 | ||
607 | STATIC_MAX_AGE = '0' | 610 | STATIC_MAX_AGE.SERVER = '0' |
608 | 611 | ||
609 | ACTIVITY_PUB.COLLECTION_ITEMS_PER_PAGE = 2 | 612 | ACTIVITY_PUB.COLLECTION_ITEMS_PER_PAGE = 2 |
610 | ACTIVITY_PUB.ACTOR_REFRESH_INTERVAL = 10 * 1000 // 10 seconds | 613 | ACTIVITY_PUB.ACTOR_REFRESH_INTERVAL = 10 * 1000 // 10 seconds |