I have Docker image rancher istallation:
$ sudo docker run --privileged -d --restart=unless-stopped -p 80:80 -p 443:443 rancher/rancher
No matter what I do my rancher’s https url has no valid certificate (it contains SAN IP).
-
I generated self-signed certificate and private key
-
I did instruction:
Adding TLS Secrets | Rancher
No result
- I also did this procedure:
Updating the Rancher Certificate | Rancher
No result
I tried docker one:
docker run -d --restart=unless-stopped \ -p 80:80 -p 443:443 \ -v /host/certs:/container/certs \ -e SSL_CERT_DIR="/container/certs" \ --privileged \ rancher/rancher:latest
No result
What’s wrong here?
Regards