Configuring Certificate Signing Request (CSR)
This page will walk through how to create a Certificate Signing Request on Polarity V5.
Create OpenSSL Config File
# Create OpenSSL config file
echo "
[req]
distinguished_name = req_distinguished_name
prompt = no
[req_distinguished_name]
C = US
ST = Ct
L = Farmington
O = Polarity.io
OU = Engineering
CN = polarityserver.mycompany.local
[v3_req]
subjectAltName = @alt_names
[alt_names]
DNS.1 = 10.10.10.10
IP.1 = 10.10.10.10
DNS.2 = polarityserver.mycompany.local
" > server.configGenerate Private Key if one does not exist
Generate CSR
Process CSR internally and Add to Polarity Docker required locations
Last updated