Advertisement
Guest User

Untitled

a guest
Apr 11th, 2015
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. <VirtualHost *:80>
  2. DocumentRoot /home/httpdocs
  3. ServerName localhost
  4. ErrorLog /home/httpdocs/logs/default-error_log
  5. CustomLog /home/httpdocs/logs/default-access_log common
  6. </VirtualHost>
  7.  
  8.  
  9. <VirtualHost *:443>
  10. SSLEngine on
  11. SSLCertificateKeyFile /etc/httpd/conf.d/server.key
  12. SSLCertificateFile /etc/httpd/conf.d/server.crt
  13. DocumentRoot /home/httpdocs
  14. ServerName localhost
  15. ErrorLog /home/httpdocs/logs/default-ssl-error_log
  16. CustomLog /home/httpdocs/logs/default-ssl-access_log common
  17. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement