You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123456 |
- # Create directory to store SSL certificates
- sudo mkdir -p /etc/ssl/certs
- sudo mkdir -p /etc/ssl/private
-
- # Generate the private key and certificate
- sudo openssl req -x509 -newkey rsa:4096 -keyout /etc/ssl/private/selfsigned.key -out /etc/ssl/certs/selfsigned.crt -days 365 -nodes
|