Mercurial Hosting > luan
view host/local_https.sh @ 2033:905a6ade55f2 default
change corePoolSize from 1 to 10
| author | Franklin Schmidt <fschmidt@gmail.com> |
|---|---|
| date | Tue, 04 Nov 2025 13:30:21 -0700 |
| parents | f1d9679308f0 |
| children |
line wrap: on
line source
#!/bin/bash set -e DOMAIN=$1 cd sites/$DOMAIN openssl req -x509 -newkey rsa:2048 -nodes -keyout "$DOMAIN.key" -out fullchain.cer -days 365 \ -subj "/CN=$DOMAIN" \ -addext "subjectAltName=DNS:$DOMAIN,IP:127.0.0.1"
