Skip to content

Commit

Permalink
fix the issue that the ai qa bot could not be accessed with http
Browse files Browse the repository at this point in the history
  • Loading branch information
nobodyiam committed Jul 3, 2023
1 parent c423d35 commit d6bf360
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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/#"
});
};
Expand Down

0 comments on commit d6bf360

Please sign in to comment.