How to Configure Auto SSL for Vultr Load Balancer
-
by Blog Admin
- 35
Configuring Auto SSL for Vultr Load Balancer enables automatic management of SSL certificates, enhancing the security of your load-balanced applications by ensuring encrypted connections. This feature simplifies the process of securing your domains by automatically issuing and renewing SSL certificates, protecting your data in transit and improving trust with your users.
Follow this guide to configure Auto SSL for your Vultr Load Balancer using the Vultr Customer Portal or API.
- Vultr Customer Portal
Auto SSL can only be used with domains that are using Vultr’s DNS. Please ensure the subdomain or domain is pointed to the Load Balancer.
- Navigate to Products and click Load Balancers.
- Click your target Load Balancer to open its management page.
- Scroll to SSL, click the pencil icon, and choose Auto SSL.
- Optional: Provide a Subdomain and select a Domain.
- Click Save changes.
- Vultr API
- Send a
GETrequest to the List Load Balancers endpoint and note the target Load Balancer’s ID.console$ curl "https://api.vultr.com/v2/load-balancers" \ -X GET \ -H "Authorization: Bearer ${VULTR_API_KEY}"
- Send a
PATCHrequest to the Update Load Balancer endpoint and apply Auto SSL to the target Load Balancer.console$ curl "https://api.vultr.com/v2/load-balancers/{load-balancer-id}" \ -X PATCH \ -H "Authorization: Bearer ${VULTR_API_KEY}" \ -H "Content-Type: application/json" \ --data '{ "auto_ssl": { "domain_zone" : "{your_domain}", "domain_sub" : "{subdomain}" } }'
- Send a
GETrequest to the Get Load Balancer endpoint to fetch the details of the target Load Balancer.console$ curl "https://api.vultr.com/v2/load-balancers/{load-balancer-id}" \ -X GET \ -H "Authorization: Bearer ${VULTR_API_KEY}"
Configuring Auto SSL for Vultr Load Balancer enables automatic management of SSL certificates, enhancing the security of your load-balanced applications by ensuring encrypted connections. This feature simplifies the process of securing your domains by automatically issuing and renewing SSL certificates, protecting your data in transit and improving trust with your…
Configuring Auto SSL for Vultr Load Balancer enables automatic management of SSL certificates, enhancing the security of your load-balanced applications by ensuring encrypted connections. This feature simplifies the process of securing your domains by automatically issuing and renewing SSL certificates, protecting your data in transit and improving trust with your…