From c3d881122c306f0bbedfa1878818a82a1eacdd2d Mon Sep 17 00:00:00 2001 From: gyurix Date: Thu, 31 Jul 2025 11:48:01 +0200 Subject: [PATCH] Run certificate check in the background during Nginx config creation --- scripts/nginx_config_create.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/nginx_config_create.sh b/scripts/nginx_config_create.sh index 3f298c0..ca674b5 100755 --- a/scripts/nginx_config_create.sh +++ b/scripts/nginx_config_create.sh @@ -436,5 +436,5 @@ fi echo "$DOMAIN" >>new_config if [ "$HTTPS_PORT" != "" ]; then - /scripts/check_certificates.sh "$DOMAIN_NAME" + /scripts/check_certificates.sh "$DOMAIN_NAME" & fi