Mercurial Hosting > luan
view host/local_https.sh @ 2055:a72cd62f9281 acme-tiny tip
specify nginx config path
| author | Violet7 |
|---|---|
| date | Tue, 11 Nov 2025 19:19:49 -0800 |
| 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"
