-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Description
Is your feature request related to a problem? Please describe.
Its not a problem looks like but a limit that should be increased i suggest, we use Route 53 and Cloud Flare and we have normal request of SAN for 30 to 40 sites at a time and looks there is limit set by developers in this NPM which can be great if increased.
Describe the solution you'd like
Increase limit to like upto 50 for SAN sites (multiple domains at once)
Looks its been controlled at NginxProxyManager/nginx-proxy-manager/blob/develop/frontend/js/app/nginx/certificates/form.js
Line 268 >> maxOptions: 15,
If that can be increased so that can be increased as i guess (i have no dev experience)
Describe alternatives you've considered
We do this by right now on linux using command below and it works for more that 15 domains(we have to enter DNS challenge for each item) :
certbot-2 certonly --email [email protected] -d agent.ha.domain.com -d auth.ha.domain.com -d billing.ha.domain.com -d bots.ha.domain.com -d cm.ha.domain.com -d docs.ha.domain.com -d eps.ha.domain.com -d onboarding.ha.domain.com -d recordings.ha.domain.com -d reports.ha.domain.com -d security.ha.domain.com -d smgr.ha.domain.com -d wfm.ha.domain.com -d wizard.ha.domain.com -d www.ha.domain.com --agree-tos --manual --preferred-challenges dns
Additional context
This NPM is great and this limit increase can make life more easy :)