Advertisement
Guest User

Untitled

a guest
Oct 9th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. <IfModule mod_ssl.c>
  2. <VirtualHost *:443>
  3. ServerName 512filmfestival.com
  4. DocumentRoot /var/www/512ff
  5. <Directory />
  6. Options FollowSymLinks
  7. AllowOverride None
  8. </Directory>
  9. <Directory /var/www/512ff>
  10. Options Indexes FollowSymLinks MultiViews
  11. AllowOverride All
  12. Order allow,deny
  13. allow from all
  14. </Directory>
  15. SSLCertificateFile /etc/letsencrypt/live/512filmfestival.com/fullchain.pem
  16. SSLCertificateKeyFile /etc/letsencrypt/live/512filmfestival.com/privkey.pem
  17. Include /etc/letsencrypt/options-ssl-apache.conf
  18. </VirtualHost>
  19. </IfModule>
  20. <IfModule mod_ssl.c>
  21. <VirtualHost *:443>
  22. ServerName www.512filmfestival.com
  23. Redirect permanent / http://512filmfestival.com/
  24. SSLCertificateFile /etc/letsencrypt/live/512filmfestival.com/fullchain.pem
  25. SSLCertificateKeyFile /etc/letsencrypt/live/512filmfestival.com/privkey.pem
  26. Include /etc/letsencrypt/options-ssl-apache.conf
  27. </VirtualHost>
  28. </IfModule>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement