mirror of
https://github.com/myvesta/vesta.git
synced 2024-11-21 21:10:17 -08:00
d9a68455a8
Update names Fix pcre url Please not configs are not tested Revert changes
39 lines
1.2 KiB
Plaintext
39 lines
1.2 KiB
Plaintext
ServerName "FTP"
|
|
ServerIdent on "FTP Server ready."
|
|
ServerAdmin root@localhost
|
|
DefaultServer on
|
|
DefaultRoot ~ !adm
|
|
|
|
Include /etc/proftpd/tls.conf
|
|
|
|
<IfModule mod_vroot.c>
|
|
VRootEngine on
|
|
VRootAlias /etc/security/pam_env.conf etc/security/pam_env.conf
|
|
</IfModule>
|
|
|
|
AuthPAMConfig proftpd
|
|
AuthOrder mod_auth_pam.c* mod_auth_unix.c
|
|
UseReverseDNS off
|
|
User proftpd
|
|
Group nogroup
|
|
MaxInstances 100
|
|
UseSendfile off
|
|
LogFormat default "%h %l %u %t \"%r\" %s %b"
|
|
LogFormat auth "%v [%P] %h %t \"%r\" %s"
|
|
ListOptions -a
|
|
RequireValidShell off
|
|
PassivePorts 12000 12100
|
|
TransferLog /var/log/proftpd/xferlog
|
|
SystemLog /var/log/proftpd/proftpd.log
|
|
|
|
<Global>
|
|
Umask 002
|
|
<IfModule mod_ident.c>
|
|
IdentLookups off
|
|
</IfModule>
|
|
AllowOverwrite yes
|
|
<Limit ALL SITE_CHMOD>
|
|
AllowAll
|
|
</Limit>
|
|
</Global>
|