当前位置: 首页 > 图文教程 > 服务器 > Web服务器 > ProFtpd快速指南(七)

Web服务器
用WebEasyMail架构Web邮件服务器(7)
用WebEasyMail架构Web邮件服务器(8)
Webmail攻防实战(1)
Webmail攻防实战(2)
Webmail攻防实战(3)
Webmail攻防实战(4)
Webmail攻防实战(5)
Webmail攻防实战(6)
Webmail攻防实战(7)
Webmail攻防实战(8)
QMAIL+MH设计方案(1)
QMAIL+MH设计方案(2)
QMAIL+MH设计方案(3)
QMAIL+MH设计方案(4)
QMAIL+MH设计方案(5)
QMAIL+MH设计方案(6)
QMAIL+MH设计方案(7)
QMAIL+MH设计方案(8)
QMAIL+MH设计方案(9)
Qmail系统下防止滥用mail relay方案(1)

Web服务器 中的 ProFtpd快速指南(七)


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-02   浏览: 37 ::
收藏到网摘: n/a

# Limit the maximum number of anonymous logins
MaxClients 10

# We ! ;want 'welcome.msg' displayed at login, and '.message' displayed
# in each newly chdired directory.
DisplayLogin welcome.msg
DisplayFirstChdir .message

# Limit WRITE everywhere in the anonymous chroot
<Limit WRITE>
DenyAll
</Limit>

</Anonymous>


DefaultRoot ~ ftpusers

<VirtualHost 192.168.2.35>

ServerName "virtual FTP server"

<Limit LOGIN>
DenyAll
</Limit>

<Anonymous /usr/local/private>

User private
Group private

<Limit LOGIN>
AllowAll
</Limit>

</Anonymous>

</VirtualHost>