From 79b4d33b5351ca9d28abafc43ce781ecbd283bd0 Mon Sep 17 00:00:00 2001 From: feng <1304903146@qq.com> Date: Wed, 19 Aug 2026 22:37:13 +0800 Subject: [PATCH] perf: openssl req add -quiet --- scripts/gists/conf.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/gists/conf.sh b/scripts/gists/conf.sh index 92acc2b..8de7dfd 100644 --- a/scripts/gists/conf.sh +++ b/scripts/gists/conf.sh @@ -198,7 +198,7 @@ function prepare_config() { log_error "$(gettext 'OpenSSL is required to generate the initial Nginx certificate')" exit 1 fi - openssl req -x509 -nodes -newkey rsa:2048 -sha256 -days 3650 \ + openssl req -quiet -x509 -nodes -newkey rsa:2048 -sha256 -days 3650 \ -keyout "${nginx_key_file}" \ -out "${nginx_cert_file}" \ -subj "/CN=localhost"