By barrygordon
I am dealing with Amazon AWS and they require that my certificate have a “Subject Alternate Name”. How do I enter that on my self-signed certificate? Can I add it to an existing certificate (.pem)?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
In order to have a Subject Alternate Name (SAN) on an SSL certificate, you must first edit your OpenSSL configuration. On Ubuntu/Debian, that can be found at /etc/ssl/openssl.cnf Find the section of that file with the heading [ v3_ca ], you can add the line with your SAN there:
subjectAltName = www.example.com
If you need to use more than one SAN, you can use this format:
[ v3_req ]
# Snipping the other items that appear here for brevity
subjectAltName = @alt_names
[alt_names]
DNS.1 = mail.example.com
DNS.2 = www.example.com
Find more info on the CAcerts wiki.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.