From ad4042f3d658328ab1ecc47dc33df4a54efd371c Mon Sep 17 00:00:00 2001 From: Marcos Kirsch Date: Mon, 20 Jul 2015 21:13:11 -0500 Subject: [PATCH] Leave auth disabled by default --- httpserver-conf.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httpserver-conf.lua b/httpserver-conf.lua index 75d8b8b..854e557 100644 --- a/httpserver-conf.lua +++ b/httpserver-conf.lua @@ -6,7 +6,7 @@ local conf = {} -- Basic Authentication Conf local auth = {} -auth.enabled = true +auth.enabled = false auth.realm = "nodemcu-httpserver" -- displayed in the login dialog users get auth.user = "user" auth.password = "password" -- PLEASE change this