Skip to content

Commit

Permalink
fix: avoid renewal e-mails from Let's Encrypt (#183)
Browse files Browse the repository at this point in the history
Fixed by increasing renewal date to 30 days before expiry.
  • Loading branch information
jacobsvante authored Jan 4, 2025
1 parent 994ae82 commit 0ab5c12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/proksi/src/services/letsencrypt/http01.rs
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ impl LetsencryptService {
tracing::info!("certificate for domain {domain} expires in {valid_days_left} days",);

// Nothing to do
if valid_days_left > 5 {
if valid_days_left > 30 {
continue;
}

Expand Down

0 comments on commit 0ab5c12

Please sign in to comment.