mirror of
https://github.com/serghey-rodin/vesta.git
synced 2025-08-14 18:49:17 -07:00
ProFTPD support for Debian and Ubuntu
This commit is contained in:
parent
88d70a255b
commit
d8d4e732b3
2 changed files with 54 additions and 0 deletions
27
install/ubuntu/proftpd.conf
Normal file
27
install/ubuntu/proftpd.conf
Normal file
|
@ -0,0 +1,27 @@
|
|||
LoadModule mod_vroot.c
|
||||
ServerName "FTP"
|
||||
ServerIdent on "FTP Server ready."
|
||||
ServerAdmin root@localhost
|
||||
DefaultServer on
|
||||
VRootEngine on
|
||||
DefaultRoot ~ !adm
|
||||
AuthPAMConfig proftpd
|
||||
AuthOrder mod_auth_pam.c* mod_auth_unix.c
|
||||
UseReverseDNS off
|
||||
User proftpd
|
||||
Group nogroup
|
||||
MaxInstances 20
|
||||
UseSendfile off
|
||||
LogFormat default "%h %l %u %t \"%r\" %s %b"
|
||||
LogFormat auth "%v [%P] %h %t \"%r\" %s"
|
||||
ListOptions -a
|
||||
RequireValidShell off
|
||||
|
||||
<Global>
|
||||
Umask 002
|
||||
IdentLookups off
|
||||
AllowOverwrite yes
|
||||
<Limit ALL SITE_CHMOD>
|
||||
AllowAll
|
||||
</Limit>
|
||||
</Global>
|
Loading…
Add table
Add a link
Reference in a new issue