Skip to content

Commit

Permalink
PR 359, ACME order processing, increase timeouts
Browse files Browse the repository at this point in the history
Increase the timeouts when waiting for the ACME server to
verify the domain names and issue the certificate from 30
seconds to 5 minutes.

refs #350
  • Loading branch information
icing committed Jan 15, 2025
1 parent 50c8bc8 commit b8287a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/md_acme_drive.c
Original file line number Diff line number Diff line change
Expand Up @@ -515,8 +515,8 @@ static apr_status_t acme_driver_preload_init(md_proto_driver_t *d, md_result_t *
d->baton = ad;

ad->driver = d;
ad->authz_monitor_timeout = apr_time_from_sec(30);
ad->cert_poll_timeout = apr_time_from_sec(30);
ad->authz_monitor_timeout = apr_time_from_sec(300);
ad->cert_poll_timeout = apr_time_from_sec(300);
ad->ca_challenges = apr_array_make(d->p, 3, sizeof(const char*));

/* We want to obtain credentials (key+certificate) for every key spec in this MD */
Expand Down

0 comments on commit b8287a6

Please sign in to comment.