Intial commit

This commit is contained in:
Mario Fetka
2020-03-10 14:33:46 +01:00
parent 2b457cf5f6
commit 247682b863
13 changed files with 119 additions and 0 deletions

20
debian/templates/proxy_protocol.conf vendored Normal file
View File

@@ -0,0 +1,20 @@
#
# Proftpd sample configuration for mod_fsync.
<IfModule mod_proxy_protocol.c>
#The ProxyProtocolEngine directive enables the
#expectation and handling of protocols which provide
#information on proxied connections; support for these
#protocols is provided by mod_proxy_protocol.
ProxyProtocolEngine on
#The ProxyProtocolTimeout directive is used to configure
#the amount of time, in seconds, that mod_proxy_protocol
#will wait to receive the full expected proxy information.
#If the full information is not received within the given
#number of seconds, the connection to the client is closed.
ProxyProtocolTimeout 3sec
# Necessary to allow data transfers
AllowForeignAddress on
</IfModule>