From 202aa27d9b1bcac8cc1c61c421082f0a43ec6251 Mon Sep 17 00:00:00 2001 From: anschrammh Date: Sun, 17 Nov 2019 09:40:23 +0100 Subject: [PATCH] Added login and password parameters in the server config file for the FTP server --- sdCard_content/CONFIG/SERVER.CFG | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sdCard_content/CONFIG/SERVER.CFG b/sdCard_content/CONFIG/SERVER.CFG index b760228..b3e2c67 100644 --- a/sdCard_content/CONFIG/SERVER.CFG +++ b/sdCard_content/CONFIG/SERVER.CFG @@ -2,12 +2,15 @@ #For the moment, there is a web and ftp server. Maybe more to come. #Ports are between 1 and 65535. #0 means unlimitted. +#An empty password means the service is open. #The blank new line at then end of the file is mendatory. Without it, the last parameter won't be read. WEB_ENABLED : 'true' WEB_PORT : 80 WEB_MAX_CLIENT : 0 FTP_ENABLED : 'true' +FTP_LOGIN : 'ESP8266' +FTP_PASSWORD : '12345678' FTP_PORT : 21 FTP_DATA_PORT : 1024 FTP_MAX_CLIENT : 0