Merge pull request #1004 from qistoph/issue950

More secure defaults.
This commit is contained in:
Michael Teeuw 2017-09-06 15:25:04 +02:00 committed by GitHub
commit e5ead9ed44
2 changed files with 6 additions and 2 deletions

View File

@ -9,7 +9,11 @@
*/
var config = {
address: "localhost",
address: "localhost", // Address to listen on, can be:
// - "localhost", "127.0.0.1", "::1" to listen on loopback interface
// - another specific IPv4/6 to listen on a specific interface
// - "", "0.0.0.0", "::" to listen on any interface
// Default, when address config is left out, is "localhost"
port: 8080,
ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"], // Set [] to allow all IP addresses
// or add a specific IPv4 of 192.168.1.5 :

View File

@ -8,7 +8,7 @@
*/
var port = 8080;
var address = ""; // Default to listening on all interfaces
var address = "localhost";
if (typeof(mmPort) !== "undefined") {
port = mmPort;
}