use quotes for Access-Control-Allow-Origin
[mkws-moved-to-github.git] / tools / apache2 / mkws-test
1 # Configuration for the apache web server                 -*- apache -*-
2
3 # pazpar2 / service proxy config
4 <VirtualHost *:80>
5     ServerName mkws-test.indexdata.com
6     ServerAlias mkws-test spclient-dev.indexdata.com
7     ServerAdmin webmaster@indexdata.com
8     ErrorLog /var/log/apache2/mkws-test-error.log
9     CustomLog /var/log/apache2/mkws-test-access.log combined
10
11     RewriteEngine on
12     RewriteLogLevel 1
13     RewriteLog /var/log/apache2/mkws-test-rewrite.log 
14
15     DocumentRoot /home/indexdata/mkws-test/examples/htdocs
16     Alias /tools/htdocs /home/indexdata/mkws-test/tools/htdocs
17
18     # CORS setting
19     Header set Access-Control-Allow-Credentials true
20     Header set Access-Control-Allow-Origin "*"
21
22     # compress text output
23     <Location />
24         AddOutputFilterByType DEFLATE text/html text/plain text/xml application/xml
25         SetOutputFilter DEFLATE 
26     </Location> 
27
28     RewriteRule /service-proxy-auth  /service-proxy/?command=auth&action=login&username=mkws&password=mkws [P] # [NE,P]
29
30     ProxyPass        /service-proxy/ http://mkc.indexdata.com:9009/service-proxy/
31     ProxyPassReverse /service-proxy/ http://mkc.indexdata.com:9009/service-proxy/
32
33     ProxyPass        /pazpar2/         http://localhost:8004/pazpar2/
34     ProxyPassReverse /pazpar2/         http://localhost:8004/pazpar2/
35
36 </VirtualHost>
37