From b4538c61814047936739b20a2ad2e149501d9ba2 Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Thu, 15 Jan 2015 19:58:55 +0000 Subject: [PATCH] Tweak for MacOS 10.10 and its Apache 2.4 installation: - Remove rewrite rules (no longer needed anyway) - Use "Require all granted" instead of "Allow from all" --- tools/apache2/mkws-mike-mac | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/tools/apache2/mkws-mike-mac b/tools/apache2/mkws-mike-mac index 7db0c62..21192c5 100644 --- a/tools/apache2/mkws-mike-mac +++ b/tools/apache2/mkws-mike-mac @@ -10,17 +10,12 @@ Alias /libjs-pz2/ /Users/mike/git/work/libjs-pz2/ Alias /pazpar2/ /Users/mike/git/work/pazpar2/ - RewriteEngine on - RewriteLogLevel 1 - RewriteLog /var/log/apache2/spclient-rewrite.log - RewriteRule /service-proxy-auth(/)?(;jsessionid=.+)? /service-proxy/$2?command=auth&action=login&username=guest&password=guest [P] # [NE,P] - # For MKC Service Proxy ProxyPass /service-proxy/ http://sp-mkc.indexdata.com/service-proxy/ ProxyPassReverse /service-proxy/ http://sp-mkc.indexdata.com/service-proxy/ # Needed on Mac, which locks Apache down hard by default. - Allow from all + Require all granted -- 1.7.10.4