From 0dfb3c1f21455f33c8715e50d65804e098a75f1b Mon Sep 17 00:00:00 2001 From: Wolfram Schneider Date: Mon, 7 Apr 2014 13:55:20 +0000 Subject: [PATCH] convert to a real template --- tools/apache2/jasmine-dev.template | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tools/apache2/jasmine-dev.template b/tools/apache2/jasmine-dev.template index 36c99b9..defa2d9 100644 --- a/tools/apache2/jasmine-dev.template +++ b/tools/apache2/jasmine-dev.template @@ -1,20 +1,20 @@ # Configuration for the apache web server -*- apache -*- # pazpar2 / service proxy config - - ServerName mkws-dev.indexdata.com - ServerAlias mkws-dev a.mkws.indexdata.com a.mkws-dev.indexdata.com + + ServerName localhost + ServerAlias mkws-dev a.mkws.indexdata.com a.mkws-dev.indexdata.com mkws-dev.indexdata.com 127.0.0.1 ServerAdmin webmaster@indexdata.com - ErrorLog /var/log/apache2/mkws-dev-error.log - CustomLog /var/log/apache2/mkws-dev-access.log combined + ErrorLog %APACHE_LOG%/mkws-dev-error.log + CustomLog %APACHE_LOG%/mkws-dev-access.log combined RewriteEngine on RewriteLogLevel 1 - RewriteLog /var/log/apache2/mkws-dev-rewrite.log + RewriteLog %APACHE_LOG%/mkws-dev-rewrite.log - DocumentRoot /home/indexdata/mkws-dev/examples/htdocs - Alias /tools/htdocs /home/indexdata/mkws-dev/tools/htdocs + DocumentRoot %MKWS_ROOT%/examples/htdocs + Alias /tools/htdocs %MKWS_ROOT%/tools/htdocs # CORS setting Header set Access-Control-Allow-Credentials true -- 1.7.10.4