Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

How to generate a self-signed certificate SSL HTTPS

openssl genrsa -out key.pem
openssl req -new -key key.pem -out csr.pem
openssl x509 -req -days 9999 -in csr.pem -signkey key.pem -out cert.pem
rm csr.pem
Comment

create a self signed certificate

#For your eyes only...
openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout tls.key -out tls.crt
Comment

generate Self-signed certificate

openssl req -config example-com.conf -new -x509 -sha256 -newkey rsa:2048 -nodes 
    -keyout example-com.key.pem -days 365 -out example-com.cert.pem
Comment

create self signed certificate

openssl genrsa -out key.pem
openssl req -new -key key.pem -out csr.pem
openssl x509 -req -days 9999 -in csr.pem -signkey key.pem -out cert.pem
rm csr.pem
Comment

PREVIOUS NEXT
Code Example
Shell :: modifier un nom de branche git 
Shell :: Best way to change the file extension in powershell 
Shell :: connectivity_plus flutter 
Shell :: vault installation 
Shell :: docker run image 
Shell :: how to make migrations in models in django 
Shell :: create next app with jest 
Shell :: git flow 
Shell :: how to pass docker hub credentials for k8s pods 
Shell :: execute cron.daily 
Shell :: how to overwrite main branch git 
Shell :: xampp phpmyadmin not found 
Shell :: jenkins download 
Shell :: ERROR: no matching manifest for linux/arm64/v8 in the manifest list entries 
Shell :: how to get driver information ubuntu 
Shell :: instal ansible centos 7 
Shell :: git issues 
Shell :: install chocolately path 
Shell :: scp all files in currrent directory 
Shell :: how to push repository to github 
Shell :: ssh raspberry pi ngrok 
Shell :: create fish alias 
Shell :: and or bash 
Shell :: bash script create file 
Shell :: open crontab in nano 
Shell :: Concatenating Strings in Bash 
Shell :: bash if else if 
Shell :: download file github 
Shell :: std error bash 
Shell :: install kali software manager support 
ADD CONTENT
Topic
Content
Source link
Name
7+1 =