From fe7e910018d0f7de5463f901576ffe044a139b7a Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Mon, 7 Jul 2014 09:49:43 +0100 Subject: [PATCH] New file sp-mkws-live, extracted from mkws-live. This is a separate service that could be on a different host. --- tools/apache2/sp-mkws-live | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 tools/apache2/sp-mkws-live diff --git a/tools/apache2/sp-mkws-live b/tools/apache2/sp-mkws-live new file mode 100644 index 0000000..6d5ccee --- /dev/null +++ b/tools/apache2/sp-mkws-live @@ -0,0 +1,30 @@ +# Separate hostname for the MKWS instance of the Service Proxy. +# This allows us to use a different SP configuration that handles +# authentication differently. +# +# Once this is in universal use, we can get rid of the Service Proxy +# stuff in the configuration for mkws.indexdata.com +# + + ServerName sp-mkws.indexdata.com + + ErrorLog /var/log/apache2/sp-mkws-error.log + CustomLog /var/log/apache2/sp-mkws-access.log combined + + DocumentRoot /home/indexdata/mkws/tools/sp-htdocs + + # No rewriting on this server: use the true URL. + # (The security value of rewrite is when the application site does it.) + + Header set Access-Control-Allow-Credentials true + + ProxyPass /service-proxy/ http://sp-mkc.indexdata.com/service-proxy/ + ProxyPassReverse /service-proxy/ http://sp-mkc.indexdata.com/service-proxy/ + # Or use: sp-mkc-sansa.indexdata.com:8080 or sp-mkc-arya.indexdata.com:8080 + + PerlOptions +Parent + PerlSwitches -I/home/indexdata/mkws/tools/mod_perl + + PerlOutputFilterHandler MyApache2::SetACAO + + -- 1.7.10.4