Ignore handlebars-v2.0.0.js rather than the old handlebars-v1.3.0.js
[mkws-moved-to-github.git] / tools / apache2 / mkws-dev-ssl-px
1 # A very simple configuration to proxy the irspy
2
3 <VirtualHost *:443>
4     ServerName mkws.indexdata.com 
5     ServerAlias mkws-dev.indexdata.com mkws-test.indexdata.com
6
7   <IfModule mod_ssl.c>
8     SSLEngine on
9     SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
10
11     #SSLCertificateFile /etc/ssl/certs/indexdata.com/id.cert
12     #SSLCertificateKeyFile /etc/ssl/certs/indexdata.com/id.key
13
14     SSLProxyEngine on
15   </IfModule>
16
17     # Remove the X-Forwarded-For header, as the proxy appends to it,
18     # and we need a clean ip address for the statistics
19     # RequestHeader unset X-Forwarded-For early
20     # Never mind
21
22     # ProxyRequests off
23     <Proxy *>
24       Order deny,allow
25       Allow from all
26     </Proxy>
27
28     ProxyPreserveHost On
29     ProxyPass         / http://dart/
30     ProxyPassReverse  / http://dart/
31
32     # Experiments to hunt down bu 3716
33     # Increase buffer size so that we don't go for chunked stuff
34     # ProxyIOBufferSize 8192
35     # Didn't help
36     # Disable gzipping
37     # RequestHeader unset Accept-Encoding
38     # Didn't help 
39     # ProxyReceiveBufferSize 8192
40     # Didn't help 
41     SetEnv force-proxy-request-1.0 1
42     SetEnv proxy-nokeepalive 1
43
44     # These are the logs for the proxying operation
45     ErrorLog     /var/log/apache2/mkws-dev-ssl-error.log
46     CustomLog    /var/log/apache2/mkws-dev-ssl-access.log combined
47 </VirtualHost>
48