From 14b355e17bf16a90835e699f5b037587009094c0 Mon Sep 17 00:00:00 2001 From: Jeff Levesque Date: Wed, 24 Dec 2014 09:39:42 -0500 Subject: [PATCH] #11: README.md, add 'FTP Server' subsection --- README.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/README.md b/README.md index 1905976..0fa967a 100644 --- a/README.md +++ b/README.md @@ -75,6 +75,26 @@ sudo apt-get install mariadb-server mariadb-client ##Configuration +###FTP Server + +To enable the installed FTP server: + +``` +$ sudo pico /etc/vsftpd.conf +``` + +Change the following lines + +- `anonymous_enable=YES` to `anonymous_enable=NO` +- `#local_enable=YES` to `local_enable=YES` +- `#write_enable=YES` to `write_enable=YES` + +Then, add `force_dot_files=YES` to the bottom of the file. Finally, restart the FTP server: + +``` +$ sudo service vsftpd restart +``` + ###GIT ####GIT Submodule