Hi,
I'm trying to create custom certs form my development ProxMox setup (proxmox version 8.2.2).
I create the certs with the following script:
Read more
I'm trying to create custom certs form my development ProxMox setup (proxmox version 8.2.2).
I create the certs with the following script:
Code:
#!/bin/bash -f
openssl genrsa -des3 -out rootCA.key 4096
openssl req -x509 -new -nodes -key rootCA.key -sha256 -days 1024 -out rootCA.crt
openssl genrsa -out 192.168.178.82.key 2048
openssl req -new -sha256 -key 192.168.178.82.key -subj "/C=IT/ST=GE/O=company/CN=192.168.178.82" -reqexts SAN -config <(cat /etc/ssl/openssl.cnf <(printf...
Read more