Mercurial > ec-dotfiles
view bin/gencsr @ 687:ae7f2fb75cdf
[vimrc] Disable auto comment
| author | nanaya <me@nanaya.pro> | 
|---|---|
| date | Thu, 13 Oct 2022 16:16:07 +0900 | 
| parents | 152c020d7d8e | 
| children | 
line wrap: on
 line source
#!/bin/sh openssl genrsa -out ssl.key 4096 openssl req -out ssl.csr -key ssl.key -new -sha256 -subj "/CN=yoursite.com"
