31 lines
692 B
Django/Jinja
31 lines
692 B
Django/Jinja
<Global>
|
|
# PassivePorts {{ pasv_ports }}
|
|
RequireValidShell off
|
|
{% if allow_symlinks %}
|
|
ShowSymlinks on
|
|
{% else %}
|
|
ShowSymlinks off
|
|
{% endif %}
|
|
AllowRetrieveRestart on
|
|
HiddenStores .%P- .frag
|
|
|
|
DisplayLogin /etc/proftpd/WELCOME.txt
|
|
DisplayChdir .README.md true
|
|
DisplayConnect /etc/proftpd/BANNER.txt
|
|
DisplayFileTransfer /etc/proftpd/SUCCESS.txt
|
|
DisplayReadme /etc/proftpd/ANNOUNCE.md
|
|
DisplayQuit /etc/proftpd/BYE.txt
|
|
|
|
TimeoutNoTransfer 3600
|
|
TimeoutStalled 210
|
|
TimeoutIdle 1400
|
|
|
|
Umask 0022 0022
|
|
AllowOverwrite on
|
|
|
|
<Directory />
|
|
<Limit ALL>
|
|
DenyAll
|
|
</Limit>
|
|
</Directory>
|
|
</Global> |