Files
2024-05-27 14:11:37 +02:00
..
2024-05-27 14:11:37 +02:00
2024-05-27 14:11:37 +02:00
2024-05-27 14:11:37 +02:00
2021-08-22 12:52:44 +02:00
2021-08-22 12:52:44 +02:00

To generate a valid certificate and private key use the following command:

# In OpenSSL ≥ 1.1.1
openssl req -x509 -newkey rsa:4096 -sha256 -days 9999 -nodes \
  -keyout key.pem -out cert.pem -subj "/CN=localhost" \
  -addext "subjectAltName=DNS:localhost,IP:127.0.0.1,IP:::1"

To check a certificate use the following command:

openssl x509 -in cert.pem -text