Skip to content

Commit

Permalink
Fixed issue with insecured dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
lumandra committed Dec 29, 2022
1 parent 016af10 commit 05aefd3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -129,7 +129,7 @@ if (DASHBOARD_ACTIVATED) {
}];

module.exports.dashboardConfig = dashboardConfig;
const dashboard = new ParseDashboard(dashboardConfig);
const dashboard = new ParseDashboard(dashboardConfig, { allowInsecureHTTP: true });
app.use('/dashboard', dashboard);
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "chisel-parse-server",
"version": "0.7.11",
"version": "0.7.12",
"description": "Parse Server setup for Chisel CMS",
"author": "Beach.io <beach.io>",
"license": "MIT",
Expand Down

0 comments on commit 05aefd3

Please sign in to comment.