From 68359b1b80c95c899fff927c5151dc22f4ff7a1c Mon Sep 17 00:00:00 2001 From: Quinn Ftw Date: Wed, 10 Jun 2026 17:37:52 -0700 Subject: [PATCH] =?UTF-8?q?chore(dev-setup):=20=F0=9F=94=A7=20Update=20SSL?= =?UTF-8?q?=20certificate=20generation=20script=20for=20modern=20dev=20too?= =?UTF-8?q?l=20compatibility?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- scripts/dev-setup/setup-local-ssl.sh | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/scripts/dev-setup/setup-local-ssl.sh b/scripts/dev-setup/setup-local-ssl.sh index f62af37..c7b8636 100755 --- a/scripts/dev-setup/setup-local-ssl.sh +++ b/scripts/dev-setup/setup-local-ssl.sh @@ -14,8 +14,8 @@ # - For Firefox auto-trust: install nss-tools (dnf install nss-tools) # # Generated certificates (in deployments/certs/local/): -# - _wildcard.lilith.apricot.local+1.pem — all domain deployments (atlilith.www, trustedmeet, etc.) -# - _wildcard.apricot.local+1.pem — apricot infrastructure services (models.apricot.local) +# - _wildcard.lilith.apricot.lan+1.pem — all domain deployments (atlilith.www, trustedmeet, etc.) +# - _wildcard.apricot.lan+1.pem — apricot infrastructure services (models.apricot.lan) # - _wildcard.atlilith.local+1.pem — atlilith infrastructure services (api, imajin, etc.) # @@ -78,15 +78,15 @@ mkdir -p "$CERTS_DIR" cd "$CERTS_DIR" # Primary: all domain deployments (atlilith.www, trustedmeet, spoiledbabes, lilithcam, etc.) -# Covers: *.atlilith.lilith.apricot.local, *.trustedmeet.lilith.apricot.local, etc. +# Covers: *.atlilith.lilith.apricot.lan, *.trustedmeet.lilith.apricot.lan, etc. echo "" -echo "Generating certificates for *.lilith.apricot.local (domain deployments)..." -mkcert "*.lilith.apricot.local" "lilith.apricot.local" +echo "Generating certificates for *.lilith.apricot.lan (domain deployments)..." +mkcert "*.lilith.apricot.lan" "lilith.apricot.lan" -# Apricot infrastructure: models.apricot.local +# Apricot infrastructure: models.apricot.lan echo "" -echo "Generating certificates for *.apricot.local (apricot infrastructure)..." -mkcert "*.apricot.local" "apricot.local" +echo "Generating certificates for *.apricot.lan (apricot infrastructure)..." +mkcert "*.apricot.lan" "apricot.lan" # Atlilith infrastructure services: api.atlilith.local, imajin.atlilith.local, etc. echo "" @@ -107,11 +107,11 @@ echo "Next steps:" echo " 1. Sync DNS: sudo ./run dns:sync" echo " 2. Start dev cluster: ./run dev" echo " 3. Access sites:" -echo " - https://atlilith.lilith.apricot.local" -echo " - https://i.atlilith.lilith.apricot.local" -echo " - https://trustedmeet.lilith.apricot.local" +echo " - https://atlilith.lilith.apricot.lan" +echo " - https://i.atlilith.lilith.apricot.lan" +echo " - https://trustedmeet.lilith.apricot.lan" echo " - https://api.atlilith.local" -echo " - https://models.apricot.local" +echo " - https://models.apricot.lan" echo "" echo "Note: If Firefox shows certificate warnings, you may need to:" echo " 1. Install nss-tools and re-run 'mkcert -install', OR"