Advertisement
Guest User

Untitled

a guest
May 31st, 2016
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. <IfModule mod_ssl.c>
  2. <VirtualHost _default_:443>
  3. ServerAdmin webmaster@localhost
  4.  
  5. DocumentRoot /var/www/
  6.  
  7. ErrorLog ${APACHE_LOG_DIR}/error.log
  8. CustomLog ${APACHE_LOG_DIR}/access.log combined
  9. SSLEngine on
  10.  
  11. SSLCertificateFile "/var/ssl/www_ciklid_org.crt"
  12. SSLCertificateKeyFile "/var/ssl/server.key"
  13.  
  14. #SSLCertificateChainFile /etc/apache2/ssl.crt/server-ca.crt
  15.  
  16. #SSLCACertificatePath /etc/ssl/certs/
  17. SSLCACertificateFile "/var/ssl/www_ciklid_org.ca-bundle"
  18.  
  19. #SSLCARevocationPath /etc/apache2/ssl.crl/
  20. #SSLCARevocationFile /etc/apache2/ssl.crl/ca-bundle.crl
  21.  
  22. #SSLVerifyClient require
  23. #SSLVerifyDepth 10
  24. #SSLOptions +FakeBasicAuth +ExportCertData +StrictRequire
  25. <FilesMatch "\.(cgi|shtml|phtml|php)$">
  26. SSLOptions +StdEnvVars
  27. </FilesMatch>
  28. <Directory /usr/lib/cgi-bin>
  29. SSLOptions +StdEnvVars
  30. </Directory>
  31.  
  32.  
  33. </VirtualHost>
  34. </IfModule>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement