service-proxy demo apache config
authorWolfram Schneider <wosch@indexdata.dk>
Wed, 12 Jun 2013 15:04:16 +0000 (15:04 +0000)
committerWolfram Schneider <wosch@indexdata.dk>
Wed, 12 Jun 2013 15:04:16 +0000 (15:04 +0000)
etc/apache2/spdemo [new file with mode: 0644]

diff --git a/etc/apache2/spdemo b/etc/apache2/spdemo
new file mode 100644 (file)
index 0000000..b6263a4
--- /dev/null
@@ -0,0 +1,26 @@
+# Configuration for the apache web server                 -*- apache -*-
+
+# pazpar2 / service proxy config
+<VirtualHost *:80>
+    ServerName spdemo.example.com
+    ServerAlias spdemo-test.indexdata.com spdemo-dev.indexdata.com spdemo-devel.indexdata.com
+    ServerAdmin webmaster@example.com
+    ErrorLog /var/log/apache2/spdemo-error.log
+    CustomLog /var/log/apache2/spdemo-access.log combined
+
+    RewriteEngine on
+    RewriteLogLevel 1
+    RewriteLog /var/log/apache2/spdemo-rewrite.log 
+
+    DocumentRoot /home/indexdata/mkws
+
+    RewriteRule /service-proxy-auth  /service-proxy/?command=auth&action=login&username=guest&password=guest [P] # [NE,P]
+
+    ProxyPass        /service-proxy/ http://mkc.indexdata.com:9009/service-proxy/
+    ProxyPassReverse /service-proxy/ http://mkc.indexdata.com:9009/service-proxy/
+
+    ProxyPass        /pazpar2/         http://localhost:8004/pazpar2/
+    ProxyPassReverse /pazpar2/         http://localhost:8004/pazpar2/
+
+</VirtualHost>
+