• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Resolved how do i generate a SAN CSR via plesk?

Linulex

Silver Pleskian
It is now possible to secure a domain and its aliases via let's encrypt, but how do i secure a domain and its aliases via a "normal" certificate?

For a webshop i need to get a EV certificate for a domain and a few aliases (via SAN), but how do i generate the csr for this via plesk?

regard
Jan
 
Hi Linulex,

Pls. go to:

=> Home > Domains > (SUB)YOUR-DOMAIN > SSL/TLS Certificates > ( Button ) Add SSL/TLS Certificate > Fill out the desired fields and press the Button ) Request

You are then able to download CSR and PRIVATE KEY with a click onto the GREEN - Arrow for each certificate ( right side ). ;)
 
@UFHH01

thanks for that answer, but this was not the question.

I know how to generate a csr for a domain, i want to know how to generate a csr for multiple domains, or if this is even possible via plesk.
SAN = Subject Alternative Name

In a csr with SAN domains, all the names need to be in the csr. At the add certificate page, there is no way to select or add extra names and aliasses are not included.

I know how to do it via the commandline, but that isn't of much use for my customers.

commandline:
create a file:

Code:
[req]
default_bits = 4096
prompt = no
default_md = sha256
req_extensions = req_ext
distinguished_name = dn
 
[ dn ]
C=NL
ST=state
L=city
O=organistation
OU=organistation unit
[email protected]
CN = www.example.com
 
[ req_ext ]
subjectAltName = @alt_names
 
[ alt_names ]
DNS.1 = www.example.nl
DNS.2 = www.example.be
DNS.3 = www.example.eu
DNS.4 = sub.example.com

and generate the csr with:

Code:
openssl req -new -sha256 -nodes -out example.com.csr -newkey rsa:4096 -keyout example.com.key -config <( cat csrtext.txt )



regards
Jan
 
I know how to generate a csr for a domain, i want to know how to generate a csr for multiple domains, or if this is even possible via plesk.
There is no other option to create a CSR over your Plesk Control Panel. ;)
 
Back
Top