diff --git a/index.html b/index.html
index 8c91eb1..98485c1 100644
--- a/index.html
+++ b/index.html
@@ -21,9 +21,11 @@
BRANCH="master"
fi
if _exists curl && [ "${ACME_USE_WGET:-0}" = "0" ]; then
- curl https://raw.githubusercontent.com/acmesh-official/acme.sh/$BRANCH/acme.sh | INSTALLONLINE=1 sh
+
+ curl https://cdn.jsdelivr.net/gh/Neilpang/acme.sh/$BRANCH/acme.sh | INSTALLONLINE=1 sh
elif _exists wget ; then
- wget -O - https://raw.githubusercontent.com/acmesh-official/acme.sh/$BRANCH/acme.sh | INSTALLONLINE=1 sh
+ wget -O - https://cdn.jsdelivr.net/gh/Neilpang/acme.sh/$BRANCH/acme.sh | INSTALLONLINE=1 sh
+
else
echo "Sorry, you must have curl or wget installed first."
echo "Please install either of them and try again."