Make The Lounge private mode by default

This commit is contained in:
Jérémie Astori 2017-08-23 01:23:24 -04:00
parent 684f1a641d
commit cdbefd3905
No known key found for this signature in database
GPG key ID: B9A4F245CD67BDE8
2 changed files with 3 additions and 2 deletions

View file

@ -8,9 +8,9 @@ module.exports = {
// Set to 'false' to enable users. // Set to 'false' to enable users.
// //
// @type boolean // @type boolean
// @default true // @default false
// //
public: true, public: false,
// //
// IP address or hostname for the web server to listen on. // IP address or hostname for the web server to listen on.

View file

@ -2,6 +2,7 @@
var config = require("../../../defaults/config.js"); var config = require("../../../defaults/config.js");
config.public = true;
config.prefetch = true; config.prefetch = true;
config.host = config.bind = "127.0.0.1"; config.host = config.bind = "127.0.0.1";
config.port = 61337; config.port = 61337;