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 :: ufw allow port from ip 
Shell :: run docker as non root 
Shell :: install express.js 
Shell :: history terminal commad getting limited 
Shell :: best linux vpn server 
Shell :: make multiple directories with a single command on windows 
Shell :: homebrew install 
Shell :: brew.sh 
Shell :: copy partition to another disk linux 
Shell :: gcc alternatives 
Shell :: how to push newly created branch in git bash 
Shell :: how to push force git 
Shell :: pip install git branch 
Shell :: how to create bootable usb on manjaro 
Shell :: install net tools in manjaro 
Shell :: install go 
Shell :: ubuntu console png to pdf 
Shell :: linux group 
Shell :: install nano in docker container 
Shell :: vim remove line by pattern from all files 
Shell :: composer remove packages 
Shell :: stremio: Depends: libfdk-aac1 
Shell :: pytorch 
Shell :: open path using terminal ubuntu 
Shell :: one liner powershell download file 
Shell :: remove soup tag 
Shell :: store credential cache git 
Shell :: Please ensure that the SDK and/or project is installed in a location that has read/write permissions for the current user. 
Shell :: linux extract tar.gz 
Shell :: sudo apt-get ignore warning 
ADD CONTENT
Topic
Content
Source link
Name
2+8 =