Is it possible, once letsencrypt is started, to issue multiple, concurrent certificate creation requests?
(the use case is for a webserver hosting multiple virtual hosts to request at start-up, and then regularly, the corresponding certificates)
I may be wrong, but I have a set of (Erlang) processes requesting (in a synchronous manner) each a certificate for a given domain (they run eachletsencrypt:make_cert( FQDN, #{ async => false }) with their own FQDN), and apparently the gen_fsm requests 'create' but receives 'pending', presumably from another parallel attempt.
If it not currently possible with a single letsencrypt instance, maybe multiple letsencrypt:start/1 could be executed concurrently? Otherwise, would it be just a limitation of the current letsencrypt-erlang,or one of the Let's Encrypt solution itself?
Thanks in advance for any hint!
Is it possible, once letsencrypt is started, to issue multiple, concurrent certificate creation requests?
(the use case is for a webserver hosting multiple virtual hosts to request at start-up, and then regularly, the corresponding certificates)
I may be wrong, but I have a set of (Erlang) processes requesting (in a synchronous manner) each a certificate for a given domain (they run each
letsencrypt:make_cert( FQDN, #{ async => false })with their own FQDN), and apparently the gen_fsm requests 'create' but receives 'pending', presumably from another parallel attempt.If it not currently possible with a single letsencrypt instance, maybe multiple letsencrypt:start/1 could be executed concurrently? Otherwise, would it be just a limitation of the current letsencrypt-erlang,or one of the Let's Encrypt solution itself?
Thanks in advance for any hint!