Added login and password parameters in the server config file for the FTP server

This commit is contained in:
anschrammh 2019-11-17 09:40:23 +01:00
parent fc434c1292
commit 202aa27d9b

View File

@ -2,12 +2,15 @@
#For the moment, there is a web and ftp server. Maybe more to come. #For the moment, there is a web and ftp server. Maybe more to come.
#Ports are between 1 and 65535. #Ports are between 1 and 65535.
#0 means unlimitted. #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. #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_ENABLED : 'true'
WEB_PORT : 80 WEB_PORT : 80
WEB_MAX_CLIENT : 0 WEB_MAX_CLIENT : 0
FTP_ENABLED : 'true' FTP_ENABLED : 'true'
FTP_LOGIN : 'ESP8266'
FTP_PASSWORD : '12345678'
FTP_PORT : 21 FTP_PORT : 21
FTP_DATA_PORT : 1024 FTP_DATA_PORT : 1024
FTP_MAX_CLIENT : 0 FTP_MAX_CLIENT : 0