mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-21 20:54:58 +05:00
?
This commit is contained in:
parent
97898d88b1
commit
e91d0725d1
1 changed files with 5 additions and 3 deletions
|
@ -1,5 +1,6 @@
|
|||
const SoftUI = require("./dashboard-core/theme/dbd-soft-ui"),
|
||||
DBD = require("./dashboard-core/index");
|
||||
DBD = require("./dashboard-core/index"),
|
||||
fs = require("fs");
|
||||
|
||||
const { PermissionsBitField, ChannelType } = require("discord.js");
|
||||
|
||||
|
@ -36,6 +37,7 @@ module.exports.load = async client => {
|
|||
};
|
||||
});
|
||||
|
||||
|
||||
const Dashboard = new DBD.Dashboard({
|
||||
port: client.config.dashboard.port,
|
||||
client: {
|
||||
|
@ -44,8 +46,8 @@ module.exports.load = async client => {
|
|||
},
|
||||
SSL: {
|
||||
enabled: true,
|
||||
key: "../../jababot-cloudflare.key",
|
||||
cert: "../../jababot-cloudflare.crt",
|
||||
key: fs.readFileSync(`${__dirname}/../jababot-cloudflare.key`, "utf-8"),
|
||||
cert: fs.readFileSync(`${__dirname}/../jababot-cloudflare.crt`, "utf-8"),
|
||||
},
|
||||
cookiesSecret: client.config.dashboard.secret,
|
||||
domain: client.config.dashboard.domain,
|
||||
|
|
Loading…
Reference in a new issue