Set language cookie even when connected + increase number of concurrent connections when sign in and sign up

This commit is contained in:
Greg Burri 2025-03-10 21:06:09 +01:00
parent b40ee5f765
commit a90c097e2a
5 changed files with 94 additions and 93 deletions

View file

@ -18,7 +18,7 @@ pub const TOKEN_SIZE: usize = 32;
pub const SEND_EMAIL_TIMEOUT: Duration = Duration::from_secs(60);
pub const NUMBER_OF_CONCURRENT_HTTP_REQUEST_FOR_RATE_LIMIT: u64 = 5;
pub const NUMBER_OF_CONCURRENT_HTTP_REQUEST_FOR_RATE_LIMIT: u64 = 20;
pub const DURATION_FOR_RATE_LIMIT: Duration = Duration::from_secs(5);
// HTTP headers, see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers.