acf7cf4a5b18b12ecd3a432e2532db0a8b7e3160
[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    LogFormat "%{X-Forwarded-For}i %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined
20 </IfModule>
21
22 # pazpar2 / service proxy config
23 <VirtualHost *:${APACHE_PORT}>
24     ServerName localhost
25     ServerAlias mkws-dev a.mkws.indexdata.com a.mkws-dev.indexdata.com mkws-dev.indexdata.com 127.0.0.1
26
27     ServerAdmin webmaster@indexdata.com
28     ErrorLog ${APACHE_LOG_DIR}/mkws-jasmine-error.log
29     CustomLog ${APACHE_LOG_DIR}/mkws-jasmine-access.log combined
30
31     RewriteEngine on
32     RewriteLogLevel 1
33     RewriteLog ${APACHE_LOG_DIR}/mkws-jasmine-rewrite.log 
34
35     DocumentRoot ${MKWS_ROOT}/examples/htdocs
36     Alias /tools/htdocs ${MKWS_ROOT}/tools/htdocs
37     Alias /src ${MKWS_ROOT}/src
38     Alias /test ${MKWS_ROOT}/test
39     Alias /jasmine ${MKWS_ROOT}/examples/jasmine
40
41     # CORS setting
42     Header set Access-Control-Allow-Credentials true
43     Header set Access-Control-Allow-Origin "*"
44
45     # compress text output
46     <Location />
47         AddOutputFilterByType DEFLATE text/html text/plain text/xml application/xml
48         SetOutputFilter DEFLATE 
49     </Location> 
50
51     # jasmine test account
52     RewriteRule /service-proxy-testauth(/)?(;jsessionid=.+)?  /service-proxy/$2?command=auth&action=login&username=mkwstest&password=mkwstest [P]
53
54     # mkws devel account (e.g. memached testing)
55     RewriteRule /service-proxy-auth(/)?(;jsessionid=.+)?  /service-proxy/$2?command=auth&action=login&username=mkwsdev&password=mkwsdev [P]
56
57     ProxyPass        /service-proxy/ http://sp-mkc.indexdata.com/service-proxy/
58     ProxyPassReverse /service-proxy/ http://sp-mkc.indexdata.com/service-proxy/
59
60     ProxyPass        /pazpar2/         http://localhost:8004/pazpar2/
61     ProxyPassReverse /pazpar2/         http://localhost:8004/pazpar2/
62
63 </VirtualHost>
64