From b1323a24d096fb12f46ad86108777a6118fd3861 Mon Sep 17 00:00:00 2001 From: Wolfram Schneider Date: Fri, 6 Jun 2014 10:53:12 +0000 Subject: [PATCH] The service proxy auth URL shortcut may contain ;jsessionid= as part of the URL path, MKWS-203 Note: jsessionid=... is not an URL parameter, it is before ?command --- tools/apache2/mkws-live | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/apache2/mkws-live b/tools/apache2/mkws-live index 379c07e..85335c2 100644 --- a/tools/apache2/mkws-live +++ b/tools/apache2/mkws-live @@ -16,10 +16,10 @@ RewriteLog /var/log/apache2/mkws-rewrite.log # Credential-hiding rewrite rules for standard MKWS account, testing account and various application accounts - RewriteRule /service-proxy-auth /service-proxy/?command=auth&action=login&username=mkws&password=mkws [P] # [NE,P] - RewriteRule /service-proxy-testauth /service-proxy/?command=auth&action=login&username=mkwstest&password=mkwstest [P] # [NE,P] - RewriteRule /service-proxy-credoauth /service-proxy/?command=auth&action=login&username=credo&password=emu [P] # [NE,P] - RewriteRule /service-proxy-kohaauth /service-proxy/?command=auth&action=check,login&username=kohademo&password=kohademo [P] + RewriteRule /service-proxy-auth(/)?(;jsessionid=.+)? /service-proxy/$2?command=auth&action=login&username=mkws&password=mkws [P] + RewriteRule /service-proxy-testauth(/)?(;jsessionid=.+)? /service-proxy/$2?command=auth&action=login&username=mkwstest&password=mkwstest [P] + RewriteRule /service-proxy-credoauth(/)?(;jsessionid=.+)? /service-proxy/$2?command=auth&action=login&username=credo&password=emu [P] + RewriteRule /service-proxy-kohaauth(/)?(;jsessionid=.+)? /service-proxy/$2?command=auth&action=check,login&username=kohademo&password=kohademo [P] # The following rule allows the server to accept service-proxy # requests that begin with an escaped "%3F" rather than a literal -- 1.7.10.4