fonctionnement de certbot en challenge http corrigé

This commit is contained in:
2025-03-09 17:28:17 +01:00
parent e3053f90cc
commit 09259162d3
3 changed files with 43 additions and 51 deletions

View File

@@ -0,0 +1,14 @@
#!/bin/bash
DOMAIN="$1"
# Importer les fonctions communes
source "$(dirname "$0")/../common/common_utils.sh"
# Vérifier si le script est exécuté en root
check_root
# Vérification DNS
check_dns "$DOMAIN"
setup_ssl "$DOMAIN"