Advertisement
b1scu1t

ftps.conf

Mar 19th, 2017
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. LoadModule mod_tls.c
  2.  
  3. Include /home/user1/proftpd/etc/proftpd.conf
  4.  
  5. <IfModule mod_tls.c>
  6. # So we can track the PID and transfer
  7. PidFile /home/user1/proftpd/ftps.pid
  8. ScoreboardFile /home/user1/proftpd/ftps.scoreboard
  9. TLSLog /home/user1/proftpd/ftps.log
  10. TransferLog /home/user1/proftpd/ftps-xfer.log
  11. # Port is defined here
  12. Port 29301
  13. # TLS Configuration
  14. TLSEngine off
  15. # Support TLSv1 and disable ssslv3
  16. ##TLSProtocol TLSv1
  17. TLSProtocol TLSv1 TLSv1.1 TLSv1.2
  18. TLSOptions NoSessionReuseRequired NoCertRequest
  19. # Are clients required to use FTP over TLS when talking to this server?
  20. TLSRequired off
  21. TLSVerifyClient off
  22. TLSRenegotiate none
  23. # Server's certificate
  24. # You need to generate these according to the faq
  25. TLSRSACertificateFile /home/user1/proftpd/ssl/proftpd.cert.pem
  26. TLSRSACertificateKeyFile /home/user1/proftpd/ssl/proftpd.key.pem
  27. </IfModule>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement