The service proxy auth URL shortcut may contain ;jsessionid= as part of the URL path...
[mkws-moved-to-github.git] / tools / apache2 / mkws-live
1 # Configuration for the apache web server
2 # Running on caliban
3
4 <VirtualHost *:80>
5     ServerName mkws.indexdata.com
6
7     ErrorLog /var/log/apache2/mkws-error.log
8     CustomLog /var/log/apache2/mkws-access.log combined
9
10     DocumentRoot /home/indexdata/mkws/tools/htdocs
11     Alias /libjs-pz2/ /home/indexdata/libjs-pz2/
12     Alias /pazpar2/ /home/indexdata/pazpar2/
13
14     RewriteEngine on
15     RewriteLogLevel 1
16     RewriteLog /var/log/apache2/mkws-rewrite.log 
17
18     # Credential-hiding rewrite rules for standard MKWS account, testing account and various application accounts
19     RewriteRule /service-proxy-auth(/)?(;jsessionid=.+)?        /service-proxy/$2?command=auth&action=login&username=mkws&password=mkws [P]
20     RewriteRule /service-proxy-testauth(/)?(;jsessionid=.+)?    /service-proxy/$2?command=auth&action=login&username=mkwstest&password=mkwstest [P]
21     RewriteRule /service-proxy-credoauth(/)?(;jsessionid=.+)?   /service-proxy/$2?command=auth&action=login&username=credo&password=emu [P]
22     RewriteRule /service-proxy-kohaauth(/)?(;jsessionid=.+)?    /service-proxy/$2?command=auth&action=check,login&username=kohademo&password=kohademo [P]
23
24     # The following rule allows the server to accept service-proxy
25     # requests that begin with an escaped "%3F" rather than a literal
26     # "?". This is useful, as requests generated by ProxyPass
27     # elsewhere always have the leading "?" escaped for some reason.
28     RewriteRule /service-proxy/\?(.*) /service-proxy/?$1 [P] # [NE,P]
29
30     Header set Access-Control-Allow-Credentials true
31
32     # For MKC Service Proxy
33     ProxyPass        /service-proxy/ http://sp-mkc.indexdata.com/service-proxy/
34     ProxyPassReverse /service-proxy/ http://sp-mkc.indexdata.com/service-proxy/
35
36     PerlOptions +Parent
37     PerlSwitches -I/home/indexdata/mkws/tools/mod_perl
38     <Location /service-proxy>
39         PerlOutputFilterHandler MyApache2::SetACAO
40     </Location>
41 </VirtualHost>