Installation guide

406 Planning and Installation Guide ShoreTel 14.2
Reverse Proxy Servers for ShoreTel Communicator on iPhone Example Script
E
NameVirtualHost *:5500
<VirtualHost *:5500>
RewriteEngine on
RewriteLog "logs/devnosproxy.localhost-rewrite.log"
RewriteLogLevel 3
RewriteRule ^/theme/(.+)$ /director2/theme/$1 [P]
RewriteRule ^/yui_2.7.0/(.+)$ /director2/yui_2.7.0/$1 [P]
RewriteRule ^/js/(.+)$ /director2/js/$1 [P]
ProxyPass /authenticate/ http://10.0.0.1/
ProxyPassReverse /authenticate/ http://10.0.0.1/
ProxyPass /cas/ http://10.0.0.1:5447/
ProxyPassReverse /cas/ http://10.0.0.1:5447/
ProxyPass /director2/ http://10.0.0.1:5449/
ProxyPassReverse /director2/ http://10.0.0.1:5449/
ErrorLog "logs/devnosproxy.localhost-error.log"
CustomLog "logs/devnosproxy.localhost-access.log" combined
# SSL Engine Switch:
# Enable/Disable SSL for this virtual host.
SSLEngine on
# SSL Cipher Suite:
# List the ciphers that the client is permitted to negotiate.
# See the mod_ssl documentation for a complete list.
SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
# Server Certificate:
# Point SSLCertificateFile at a PEM encoded certificate. If
# the certificate is encrypted, then you will be prompted for a
# pass phrase. Note that a kill -HUP will prompt again. Keep
# in mind that if you have both an RSA and a DSA certificate you
# can configure both in parallel (to also allow the use of DSA
# ciphers, etc.)
SSLCertificateFile "C:/Apache Software Foundation/Apache2.2/conf/server.crt"
#SSLCertificateFile "C:/Apache Software Foundation/Apache2.2/conf/server-
dsa.crt"
# Server Private Key:
# If the key is not combined with the certificate, use this
# directive to point at the key file. Keep in mind that if
# you've both a RSA and a DSA private key you can configure
# both in parallel (to also allow the use of DSA ciphers, etc.)
SSLCertificateFile "C:/Apache Software Foundation/Apache2.2/conf/server.key"
#SSLCertificateKeyFile "C:/Apache Software Foundation/Apache2.2/conf/server-
dsa.key"