• We value your experience with Plesk during 2024
    Plesk strives to perform even better in 2025. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2024.
    Please take this short survey:

    https://pt-research.typeform.com/to/AmZvSXkx
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

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