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.
merge-requests/182/head
Kurt Roeckx 3 years ago committed by Timo Kösters
parent a87519fb71
commit b546a5bf15
No known key found for this signature in database
GPG Key ID: 24DA7517711A2BA4

@ -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"),
},

Loading…
Cancel
Save