• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

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