Mercurial Hosting > luan
view host/local_https.sh @ 2090:639441abad7b ssltesting
revert to using site/DOMAIN instead of site/DOMAIN/ssl
| author | Violet7 |
|---|---|
| date | Thu, 11 Dec 2025 20:28:38 -0800 |
| parents | 9e0d28433e25 |
| 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"
