Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Mosleh <41725025+sam-mosleh@users.noreply.github.com>2026-01-27 01:05:15 +0300
committerGitHub <noreply@github.com>2026-01-27 01:05:15 +0300
commit8a4c9a98cbf8efce7c2efd1e3daa4c996830b30c (patch)
tree88739494a40b2e1bb44b3e5706b7d7c6d05a9003 /install.sh
parent70b365171f9b40b540be5bff1a9c8b7227a37ac6 (diff)
Fix modifying default CA (#3708)
Diffstat (limited to 'install.sh')
-rw-r--r--install.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/install.sh b/install.sh
index 62c8ea37..e01cff99 100644
--- a/install.sh
+++ b/install.sh
@@ -147,7 +147,7 @@ setup_ssl_certificate() {
echo -e "${green}Issuing SSL certificate for ${domain}...${plain}"
echo -e "${yellow}Note: Port 80 must be open and accessible from the internet${plain}"
- ~/.acme.sh/acme.sh --set-default-ca --server letsencrypt >/dev/null 2>&1
+ ~/.acme.sh/acme.sh --set-default-ca --server letsencrypt --force >/dev/null 2>&1
~/.acme.sh/acme.sh --issue -d ${domain} --listen-v6 --standalone --httpport 80 --force
if [ $? -ne 0 ]; then