Advertisement
Guest User

Untitled

a guest
Jan 3rd, 2017
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #<IfModule mod_ssl.c>
  2.  
  3. SSLStrictSNIVHostCheck off
  4.  
  5. <VirtualHost *:443>
  6.  
  7.         ServerAdmin service@panas.nl
  8.         DocumentRoot /var/www/
  9.         ErrorLog ${APACHE_LOG_DIR}/error.log
  10.         CustomLog ${APACHE_LOG_DIR}/access.log combined
  11.         SSLEngine On
  12.         SSLProxyEngine on
  13.         SSLProxyVerify none
  14.         SSLProxyCheckPeerCN off
  15.         SSLProxyCheckPeerName off
  16.         SSLProxyCheckPeerExpire off
  17.         # Set the path to SSL certificate
  18.         # Usage: SSLCertificateFile /path/to/cert.pem
  19.         SSLCertificateFile /etc/apache2/ssl/panas_wildcard.crt
  20.         SSLCertificateKeyFile /etc/apache2/ssl/panas_wildcard.key
  21.         ProxyRequests Off
  22.         ProxyPreserveHost Off
  23. #       ProxyPass "/"  "https://customer.hornbill.com/panashornbill/"
  24. #       ProxyPassReverse "/"  "https://customer.hornbill.com/panashornbill/"
  25.        ProxyPass "/panashornbill/" "https://customer.hornbill.com/panashornbill/"
  26.         ProxyPassReverse "/panashornbill/" "https://customer.hornbill.com/panashornbill/"
  27.         ServerName support.panas.nl
  28.  
  29. </VirtualHost>
  30.  
  31. #</IfModule>
  32.  
  33. # vim: syntax=apache ts=4 sw=4 sts=4 sr noet
  34.  
  35. #<IfModule mod_ssl.c>
  36.  
  37. <VirtualHost *:443>
  38.  
  39.         ServerAdmin service@panas.nl
  40.         DocumentRoot /var/www/
  41.         ErrorLog ${APACHE_LOG_DIR}/error.log
  42.         CustomLog ${APACHE_LOG_DIR}/access.log combined
  43.         SSLEngine On
  44.         SSLProxyEngine on
  45.         SSLProxyVerify none
  46.         SSLProxyCheckPeerCN off
  47.         SSLProxyCheckPeerName off
  48.         SSLProxyCheckPeerExpire off
  49.         # Set the path to SSL certificate
  50.         # Usage: SSLCertificateFile /path/to/cert.pem
  51.         SSLCertificateFile /etc/apache2/ssl/panas_wildcard.crt
  52.         SSLCertificateKeyFile /etc/apache2/ssl/panas_wildcard.key
  53.         ProxyRequests Off
  54.         ProxyPreserveHost Off
  55. #       ProxyPass "/ws"  "wss://eurapi.hornbill.com/panashornbill/ws"
  56. #        ProxyPass "/"  "https://eurapi.hornbill.com/panashornbill/"
  57. #        ProxyPassReverse "/"  "https://eurapi.hornbill.com/panashornbill/"
  58.         ProxyPass "/panashornbill/ws" "wss://eurapi.hornbill.com/panashornbill/ws"
  59.         ProxyPass "/panashornbill/" "https://eurapi.hornbill.com/panashornbill/"
  60.         ProxyPassReverse "/panashornbill/" "https://eurapi.hornbill.com/panashornbill/"
  61.         ServerName api.panas.nl
  62.  
  63. </VirtualHost>
  64.  
  65. #</IfModule>
  66.  
  67. # vim: syntax=apache ts=4 sw=4 sts=4 sr noet
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement