Skip to content

Commit

Permalink
#11: README.md, add 'FTP Server' subsection
Browse files Browse the repository at this point in the history
  • Loading branch information
jeff1evesque committed Dec 24, 2014
1 parent 78aece2 commit 14b355e
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 14b355e

Please sign in to comment.