Added new ansible home directory, moving roles into its 'roles' subdirectory

This commit is contained in:
Alex Tavarez
2025-07-27 00:04:39 -04:00
parent 16430af533
commit bffe44b5a7
60 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
<IfModule mod_tls.c>
<VirtualHost 0.0.0.0>
ServerName {{ servername }}
ServerAdmin {{ admin_email }}
ServerAlias {{ serveralias }}
ServerIdent on "Welcome to %v!"
Protocols {{ ftp_protocols }}
Port {{ ftp_port }}
{# PassivePorts 49152 65534 #}
DisplayChdir .category.msg
DisplayLogin .welcome.msg
TLSEngine on
TLSLog /var/log/proftpd/tls.log
TLSProtocol SSLv23
TLSOptions AllowClientRenegotiations
TLSVerifyClient off
TLSRequired on
TLSRenegotiate required off
TLSECCertificateFile {{ sec_cert_path }}
TLSCACertificateFile {{ sca_cert_path }}
TLSECCertificateKeyFile {{ key_cert_path }}
<IfModule mod_auth_file.c>
AuthUserFile {{ ftp_auth_user_path }}
AuthGroupFile {{ ftp_auth_group_path }}
AuthFileOptions SyntaxCheck
</IfModule>
</VirtualHost>
</IfModule>