Let our server signing be valid for 1 week

It was valid for 2 minutes, which can result in the server being
asked too much for something that never changes.
next
Kurt Roeckx 2021-08-25 16:06:35 +02:00 committed by Timo Kösters
parent a87519fb71
commit b546a5bf15
No known key found for this signature in database
GPG Key ID: 24DA7517711A2BA4
1 changed files with 1 additions and 1 deletions

View File

@ -568,7 +568,7 @@ pub fn get_server_keys_route(db: DatabaseGuard) -> Json<String> {
old_verify_keys: BTreeMap::new(),
signatures: BTreeMap::new(),
valid_until_ts: MilliSecondsSinceUnixEpoch::from_system_time(
SystemTime::now() + Duration::from_secs(60 * 2),
SystemTime::now() + Duration::from_secs(86400 * 7),
)
.expect("time is valid"),
},