Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. <VirtualHost example1.com>
  2. TLSEngine on
  3. TLSLog /var/log/proftpd/tls.log
  4. TLSProtocol SSLv23
  5. TLSOptions NoCertRequest EnableDiags NoSessionReuseRequired
  6. TLSVerifyClient off
  7. TLSRSACertificateFile /etc/apache2/ssl/cert-example1.com.pem
  8. TLSRSACertificateKeyFile /etc/apache2/ssl/privkey-example1.com.pem
  9. </VirtualHost>
  10.  
  11. <VirtualHost example2.com>
  12. TLSEngine on
  13. TLSLog /var/log/proftpd/tls.log
  14. TLSProtocol SSLv23
  15. TLSOptions NoCertRequest EnableDiags NoSessionReuseRequired
  16. TLSVerifyClient off
  17. TLSRSACertificateFile /etc/apache2/ssl/cert-example2.com.pem
  18. TLSRSACertificateKeyFile /etc/apache2/ssl/privkey-example2.com.pem
  19. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement