Add /pazpar2/ alias.
authorMike Taylor <mike@indexdata.com>
Mon, 9 Dec 2013 21:20:29 +0000 (21:20 +0000)
committerMike Taylor <mike@indexdata.com>
Mon, 9 Dec 2013 21:20:29 +0000 (21:20 +0000)
Add x.example.indexdata.com stanza.

tools/apache2/mkws-mike-mac

index c416cae..8f9d5a3 100644 (file)
@@ -8,6 +8,7 @@
 
     DocumentRoot /usr/local/src/git/mkws/tools/htdocs
     Alias /libjs-pz2/ /usr/local/src/git/libjs-pz2/
+    Alias /pazpar2/ /usr/local/src/git/pazpar2/
 
     RewriteEngine on
     RewriteLogLevel 1
         Allow from all
     </Directory>
 </VirtualHost>
+
+<VirtualHost *:80>
+    ServerName x.example.indexdata.com
+    ErrorLog /opt/local/apache2/logs/example-error.log
+    CustomLog /opt/local/apache2/logs/example-access.log combined
+
+    DocumentRoot /usr/local/src/git/mkws/examples/htdocs
+
+    # Needed on Mac, which locks Apache down hard by default.
+    <Directory />
+        Allow from all
+    </Directory>
+</VirtualHost>