SEO

proftpd.conf 본문

리눅스마스터

proftpd.conf

볼거없는블로그 2014. 10. 7. 10:10
반응형

ServerName                      "ProFTPD Default Installation"
ServerType                      standalone
DefaultServer                   on

 

Port                            21

 

UseIPv6                         off


Umask                           022


MaxInstances                    30


User                            nobody
Group                           nobody


#DefaultRoot ~   =>  DefaultRoot ~

 

# Normally, we want files to be overwriteable.
AllowOverwrite          on

 

# Bar use of SITE CHMOD by default
<Limit SITE_CHMOD>
  DenyAll
</Limit>

 

#<Anonymous ~ftp>
<Anonymous /home/ftp>
  User                          ftp
  Group                         ftp

 

  UserAlias                     anonymous ftp

 

  MaxClients                    10

 
  DisplayLogin                  welcome.msg
  DisplayChdir                  .message

 

  # Limit WRITE everywhere in the anonymous chroot


<Directory imcoming>
 <Limit READ>
 AllowALL
 </Limit>
</Directory>
<Directory pub>
 <Limit READ, STOR, DELE, MKD>
 AllowALL
 </Limit>
</Directory>

반응형

'리눅스마스터' 카테고리의 다른 글

samba  (0) 2014.10.08
sendmail  (0) 2014.10.08
rsync  (0) 2014.10.08
tripwire  (0) 2014.10.08
logrotate.conf  (0) 2014.10.08
Comments