Hello, I'm trying to set up HTTPS on my Proxmox server. Currently, I've executed these commands:
openssl genrsa -out pvenode1.key 2048
openssl req -new -key pvenode1.key -out pvenode1.csr
openssl x509 -req -days 365 -in pvenode1.csr -signkey pvenode1.key -out pvenode1.crt
Then, I uploaded the certificate and key into PVE1. It worked; now I have the warning popup, but I'm still on HTTP. I think it's because the certificate is self-signed and not issued by a trusted certificate authority. Does anyone know how I can make my browser trust my key or another method to switch to HTTPS?
Thanks in advance.
openssl genrsa -out pvenode1.key 2048
openssl req -new -key pvenode1.key -out pvenode1.csr
openssl x509 -req -days 365 -in pvenode1.csr -signkey pvenode1.key -out pvenode1.crt
Then, I uploaded the certificate and key into PVE1. It worked; now I have the warning popup, but I'm still on HTTP. I think it's because the certificate is self-signed and not issued by a trusted certificate authority. Does anyone know how I can make my browser trust my key or another method to switch to HTTPS?
Thanks in advance.