From 25e076505ebe735cb3819ae8675b734d4f1c49aa Mon Sep 17 00:00:00 2001 From: Jeremy Kescher Date: Thu, 7 Jul 2022 01:14:28 +0000 Subject: ip_cleanup_scheduler: Make IP and session retention configurable (#18757) --- .env.production.sample | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to '.env.production.sample') diff --git a/.env.production.sample b/.env.production.sample index 4fc58072f..5eecb8bde 100644 --- a/.env.production.sample +++ b/.env.production.sample @@ -67,3 +67,11 @@ S3_BUCKET=files.example.com AWS_ACCESS_KEY_ID= AWS_SECRET_ACCESS_KEY= S3_ALIAS_HOST=files.example.com + +# IP and session retention +# ----------------------- +# Make sure to modify the scheduling of ip_cleanup_scheduler in config/sidekiq.yml +# to be less than daily if you lower IP_RETENTION_PERIOD below two days (172800). +# ----------------------- +IP_RETENTION_PERIOD=31556952 +SESSION_RETENTION_PERIOD=31556952 -- cgit From 6c0d73a675d62f676b005c06593fd69e9a7bc0e5 Mon Sep 17 00:00:00 2001 From: Claire Date: Sun, 17 Jul 2022 22:58:41 +0200 Subject: Change default values for emoji limits in .env.production.sample and comment them out --- .env.production.sample | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.env.production.sample') diff --git a/.env.production.sample b/.env.production.sample index 5fae5f661..ad058b2b7 100644 --- a/.env.production.sample +++ b/.env.production.sample @@ -283,8 +283,8 @@ MAX_POLL_OPTION_CHARS=100 # If undefined or smaller than MAX_EMOJI_SIZE, the value # of MAX_EMOJI_SIZE will be used for MAX_REMOTE_EMOJI_SIZE # Units are in bytes -MAX_EMOJI_SIZE=51200 -MAX_REMOTE_EMOJI_SIZE=204800 +# MAX_EMOJI_SIZE=262144 +# MAX_REMOTE_EMOJI_SIZE=262144 # Optional hCaptcha support # HCAPTCHA_SECRET_KEY= -- cgit