diff --git a/config.conf b/config.conf new file mode 100644 index 000000000..7fad96b00 --- /dev/null +++ b/config.conf @@ -0,0 +1,9 @@ + +const port = 8000; +const whitelist = ['127.0.0.1']; //Example for add several IP in whitelist: ['127.0.0.1', '192.168.0.10'] +const whitelistMode = true; //Disabling enabling the ip whitelist mode. true/false +const autorun = true; //Autorun in the browser. true/false + +module.exports = { + port, whitelist, whitelistMode, autorun +};