FTP CONFIG SYNTAX CHECK RESULTS Checking syntax of configuration file proftpd[28871]: mod_tls/2.7: NoCertRequest TLSOption is deprecated Fix Comment the line 'TLSOptions NoCertRequest' in the FTP configuration file. The FTP configuration file can be edited in Nodeworx under "System Services -> FTP Server -> FTP Config File Syntax" look for the button that says "Edit Configuration … Continue reading mod_tls/2.7: NoCertRequest TLSOption is deprecated in Interworx
Category: Ftp
Add a SFTP user and allow to make SFTP connections only.
Create a group sftp_users # sudo groupadd sftp_users 2. Create the sftp user bunny. Here chroot is set to /home/bunny/data. # sudo useradd -d /home/bunny/data -G sftp_users -s /sbin/nologin bunny 3. Set password for the user # sudo passwd bunny 4. Now edit the sshd config file and make the following changes. # sudo vi … Continue reading Add a SFTP user and allow to make SFTP connections only.