• 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
emailAddress=admin@example.com
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