From fae4aea25a8823022b2664fceeafa05d71cb8bc9 Mon Sep 17 00:00:00 2001 From: Jason Song Date: Mon, 3 Jul 2023 13:47:49 +0800 Subject: [PATCH] fix the issue that the ai qa bot could not be accessed with http --- docs/index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/index.html b/docs/index.html index 67de0ee551f..e3855418711 100644 --- a/docs/index.html +++ b/docs/index.html @@ -187,14 +187,14 @@ (function() { var link = document.createElement('link'); link.rel = 'stylesheet'; - link.href = 'http://81.68.181.139/ai/qa-bot.css'; + link.href = 'https://ai.apolloconfig.com/qa-bot.css'; document.head.appendChild(link); var script = document.createElement('script'); - script.src = 'http://81.68.181.139/ai/qa-bot.js'; + script.src = 'https://ai.apolloconfig.com/qa-bot.js'; script.onload = function () { QABot.initialize({ - "serverUrl": "http://81.68.181.139/ai/qa", + "serverUrl": "https://ai.apolloconfig.com/qa", "documentSiteUrlPrefix": "https://www.apolloconfig.com/#" }); };