Merge
[mkws-moved-to-github.git] / tools / apache2 / jasmine-dev.template
1 # Configuration for the apache web server                 -*- apache -*-
2
3 #####################################################################
4 # global apache 2.2 config
5 #
6 User ${APACHE_RUN_USER}
7 Group ${APACHE_RUN_GROUP}
8 PidFile ${APACHE_PID_FILE}
9 LockFile ${APACHE_LOCK_FILE}
10
11 ServerName localhost
12 ServerRoot ${APACHE_SERVER_ROOT}
13 NameVirtualHost *:${APACHE_PORT}
14 Listen ${APACHE_PORT}
15
16 Include ${APACHE_MODULES}
17
18 <IfModule log_config_module>
19    # %O only works if mod_logio is enabled, which it isn't on Mike's MacBook
20    # LogFormat "%{X-Forwarded-For}i %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined
21    LogFormat "%{X-Forwarded-For}i %l %u %t \"%r\" %>s \"%{Referer}i\" \"%{User-Agent}i\"" combined
22 </IfModule>
23
24 # pazpar2 / service proxy config
25 <VirtualHost *:${APACHE_PORT}>
26     ServerName localhost
27     ServerAlias mkws-dev a.mkws.indexdata.com a.mkws-dev.indexdata.com mkws-dev.indexdata.com 127.0.0.1
28
29     ServerAdmin webmaster@indexdata.com
30     ErrorLog ${APACHE_LOG_DIR}/mkws-jasmine-error.log
31     CustomLog ${APACHE_LOG_DIR}/mkws-jasmine-access.log combined
32
33     RewriteEngine on
34     RewriteLogLevel 1
35     RewriteLog ${APACHE_LOG_DIR}/mkws-jasmine-rewrite.log 
36
37     DocumentRoot ${MKWS_ROOT}/examples/htdocs
38     Alias /tools/htdocs ${MKWS_ROOT}/tools/htdocs
39     Alias /src ${MKWS_ROOT}/src
40     Alias /test ${MKWS_ROOT}/test
41     Alias /jasmine ${MKWS_ROOT}/examples/jasmine
42
43     # CORS setting
44     Header set Access-Control-Allow-Credentials true
45     Header set Access-Control-Allow-Origin "*"
46
47     # compress text output
48     <Location />
49         AddOutputFilterByType DEFLATE text/html text/plain text/xml application/xml
50         SetOutputFilter DEFLATE 
51     </Location> 
52
53     # jasmine test account
54     RewriteRule /service-proxy-testauth(/)?(;jsessionid=.+)?  /service-proxy/$2?command=auth&action=login&username=mkwstest&password=mkwstest [P]
55
56     # mkws devel account (e.g. memached testing)
57     RewriteRule /service-proxy-auth(/)?(;jsessionid=.+)?  /service-proxy/$2?command=auth&action=login&username=mkwsdev&password=mkwsdev [P]
58
59     ProxyPass        /service-proxy/ http://sp-mkc.indexdata.com/service-proxy/
60     ProxyPassReverse /service-proxy/ http://sp-mkc.indexdata.com/service-proxy/
61
62     ProxyPass        /pazpar2/         http://localhost:8004/pazpar2/
63     ProxyPassReverse /pazpar2/         http://localhost:8004/pazpar2/
64
65 </VirtualHost>
66