Advertisement
Guest User

Untitled

a guest
Apr 18th, 2015
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. <VirtualHost www.sociallybuzz.com:443>
  2. SSLEngine on
  3. SSLCertificateFile /etc/apache2/ssl/app.sociallybuzz.com.crt
  4. SSLCertificateKeyFile /etc/apache2/ssl/sociallybuzz.key
  5. DocumentRoot /var/www/website
  6. ServerName app.sociallybuzz.com
  7. SSLCACertificateFile /etc/apache2/ssl/gd_bundle.crt
  8. </VirtualHost>
  9.  
  10. <VirtualHost www.sociallybuzz.com:80>
  11. DocumentRoot /var/www/website
  12. ServerName www.sociallybuzz.com
  13. <Directory "/var/www/website">
  14. allow from all
  15. Options +Indexes
  16. </Directory>
  17. ServerAlias sociallybuzz.com
  18. </VirtualHost>
  19. root@sociallybuzz:/etc/apache2/sites-available#
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement