Advertisement
Guest User

Untitled

a guest
Aug 1st, 2014
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <VirtualHost *:443>
  2. ServerName test.example.com
  3.  
  4. <Proxy *>
  5. Order deny,allow
  6. Allow from all
  7. </Proxy>
  8.  
  9. SSLEngine on
  10. SSLProxyEngine On
  11. SSLCertificateFile /www/certs/example.com.crt
  12. SSLCertificateKeyFile /www/certs/example.com.key
  13.  
  14. ProxyRequests Off
  15. ProxyPreserveHost On
  16. ProxyPass / https://localhost:8080/
  17. ProxyPassReverse / https://localhost:8080/
  18. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement