Advertisement
Guest User

Untitled

a guest
Mar 25th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. Listen 443
  2. <VirtualHost cutshopper.com:443>
  3. ServerAdmin webmaster@localhost // you can use any email here
  4. DocumentRoot /var/www/html
  5.  
  6. <Directory /var/www/html/>
  7. Options FollowSymLinks
  8. AllowOverride All
  9. Require all granted
  10. </Directory>
  11.  
  12. ErrorLog ${APACHE_LOG_DIR}/error.log
  13. CustomLog ${APACHE_LOG_DIR}/access.log combined
  14.  
  15. ServerName cutshopper.com
  16. SSLEngine on
  17. SSLCertificateFile "/ssl/*your_domain_name*.crt"
  18. SSLCertificateKeyFile "/ssl/*your_private_key*.key"
  19. SSLCACertificateFile "/ssl/bundle.crt"
  20. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement