Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. <VirtualHost *:80>
  2. ServerAdmin admin@togetherweserved.com
  3. ServerName join.togetherweserved.com
  4.  
  5. Redirect 302 / https://join.togetherweserved.com
  6.  
  7. </VirtualHost>
  8. <VirtualHost *:443>
  9. ServerAdmin admin@togetherweserved.com
  10. ServerName join.togetherweserved.com
  11.  
  12. SSLEngine on
  13. SSLProtocol all -SSLv2 -SSLv3
  14. SSLCipherSuite HIGH:!ADH:!EXPORT:!SSLv2:RC4+RSA
  15. SSLProxyEngine On
  16. SSLCertificateFile /etc/httpd/certs/star_togetherweserved_com.crt
  17. SSLCertificateKeyFile /etc/httpd/certs/star_togetherweserved_com.key
  18. SSLCertificateChainFile /etc/httpd/certs/DigiCertCA.crt
  19.  
  20. ProxyPreserveHost On
  21.  
  22. # Servers to proxy the connection, or;
  23. # List of application servers:
  24. # Usage:
  25. # ProxyPass / http://[IP Addr.]:[port]/
  26. # ProxyPassReverse / http://[IP Addr.]:[port]/
  27. # Example:
  28. ProxyPass / https://navy.togetherweserved.com/
  29. ProxyPassReverse / https://navy.togetherweserved.com/
  30. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement