Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. ServerName 10.200.2.15
  2. NameVirtualHost 10.200.2.15:443
  3. Listen 10.200.2.15:443
  4.  
  5. < VirtualHost 10.200.2.15:443 >
  6. ServerName v3.mysite.com
  7. ServerAdmin webmaster@example.com
  8. DocumentRoot "/Library/WebServer/Documents"
  9. DirectoryIndex index.html index.php login.jhtml
  10. ErrorLog "/private/var/log/httpd/error_log"
  11. < IfModule mod_ssl.c >
  12. SSLEngine On
  13. SSLLog "/private/var/log/httpd/ssl_engine_log"
  14. SSLCertificateFile "/etc/certificates/_.mysite.com.crt"
  15. SSLCertificateKeyFile "/etc/certificates/private.key"
  16. SSLCertificateChainFile "/etc/certificates/gd_bundle.crt"
  17. SSLCipherSuite "ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM:+LOW:!SSLv2:+EXP:+eNULL"
  18. < /IfModule >
  19. < /VirtualHost >
  20.  
  21. <VirtualHost (ip address of server):443>
  22. ServerName mysite.com
  23. <VirtualHost>
  24.  
  25. <VirtualHost (ip address of server):443>
  26. ServerName *.mysite.com
  27. <VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement