feature: added ProFTPd configuration template files to be used by handlers at installation
This commit is contained in:
22
roles/bootstrap/templates/proftpd/conf.d/global.conf.j2
Normal file
22
roles/bootstrap/templates/proftpd/conf.d/global.conf.j2
Normal file
@@ -0,0 +1,22 @@
|
||||
<Global>
|
||||
PassivePorts {{ pasv_ports }}
|
||||
RequireValidShell off
|
||||
MaxInstances {{ max_conns }}
|
||||
{% if allow_symlinks %}
|
||||
ShowSymlinks on
|
||||
{% else %}
|
||||
ShowSymlinks off
|
||||
{% endif %}
|
||||
|
||||
DisplayLogin WELCOME.msg
|
||||
DisplayChdir .README.md true
|
||||
DisplayConnect BANNER.msg
|
||||
DisplayFileTransfer SUCCESS.msg
|
||||
|
||||
TimeoutNoTransfer 3600
|
||||
TimeoutStalled 210
|
||||
TimeoutIdle 1400
|
||||
|
||||
Umask 022 022
|
||||
AllowOverwrite on
|
||||
</Global>
|
||||
Reference in New Issue
Block a user