1# User's home share. User will see a share named "home" if
2# you enable this.
3#[homes]
4#	browseable=yes
5
6# [public]
7#       The name of this share is "public". After user login, he will see a
8#       share named "public" when ls in /.
9# path="/var/ftp"
10#       The real path is /var/ftp. It should be a absolute path.
11# browseable=yes
12#       When "ls" in /, this share will show if it is browseable. The default
13#       is yes which means it is browseable.
14# ro=anonymous, @group1
15#       User "anonymous" and group "group1" can access the share
16#       with "read only" permission.
17# rw=@normal, @rw_group
18#       Users in group "normal" and "rw_group" have read/write
19#       permission on share public.
20#
21#[public]
22#	path=/var/ftp
23#	browseable=yes
24#	ro=anonymous, @user1
25#	rw=@normal, @rw_group
26
27# The share "mp3" is in /home/mp3. Only users "ftp" and "anonymous"
28# have read only privilege.
29#
30#[mp3]
31#   path=/home/mp3
32#   browseable=yes
33#   ro=ftp
34
35# The real path of share "upload" is /home/upload.
36# Users "ftp" and "anonymous" can upload files only. They can't see
37# files in this share. They can't download, nor modify exist files.
38# Group "wheel" have full privilege on this share.
39#
40#[upload]
41#   path=/home/upload
42#   rw=ftp,@wheel
43#   disable_ls=ftp
44#   disable_modify=ftp
45#   disable_download=ftp
46#
47