feat(ssl): add autimation for ssl configurations (scripts/setup-ssl) with given custom-ssl/privatekey.pem and custom-ssl/fullchain.pem credentials

This commit is contained in:
2026-03-19 07:11:53 +08:00
parent a521a88d38
commit b4abafd28f
3 changed files with 77 additions and 0 deletions

7
run.sh
View File

@@ -63,6 +63,13 @@ if [[ $REPLY =~ ^[Yy]$ ]]; then
fi
fi
echo ""
if [ -f "./scripts/setup-ssl.sh" ]; then
bash ./scripts/setup-ssl.sh
else
echo -e "${YELLOW}[WARNING] ./scripts/setup-ssl.sh not found. Skipping SSL setup.${NC}"
fi
echo -e "\n${CYAN}Starting GitLab via Docker Compose...${NC}"
docker compose up -d