Leave auth disabled by default

This commit is contained in:
Marcos Kirsch 2015-07-20 21:13:11 -05:00
parent 1d3cdaf1a7
commit ad4042f3d6

View File

@ -6,7 +6,7 @@ local conf = {}
-- Basic Authentication Conf -- Basic Authentication Conf
local auth = {} local auth = {}
auth.enabled = true auth.enabled = false
auth.realm = "nodemcu-httpserver" -- displayed in the login dialog users get auth.realm = "nodemcu-httpserver" -- displayed in the login dialog users get
auth.user = "user" auth.user = "user"
auth.password = "password" -- PLEASE change this auth.password = "password" -- PLEASE change this