Mercurial > ec-dotfiles
view bin/gencsr @ 749:3cacb4270864 default tip
[bashrc] hg grep now does the expected thing, no need for custom alias
| author | nanaya <me@nanaya.net> |
|---|---|
| date | Tue, 02 Sep 2025 22:43:45 +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"
