JJ: Description from the destination commit:

wip customize skeleton

JJ: Description from source commit:
.
This commit is contained in:
swrup 2025-11-02 13:32:06 +01:00
parent f4d9f8e618
commit 2b02e8ff9d
16 changed files with 48 additions and 24 deletions

7
gen_tls.sh Normal file
View file

@ -0,0 +1,7 @@
#!/bin/sh
hostname="${2:-localhost}"
mkdir data/tls/keys
mkdir data/tls/certificates
openssl req -x509 -newkey rsa:4096 -keyout data/tls/keys/$1 -out data/tls/certificates/$1 -sha256 -days 365 -subj "/CN=$hostname" -nodes