Index: /branches/eam_branches/ipp-pstamp-20260421/pstamp/web/03_pstamp.conf
===================================================================
--- /branches/eam_branches/ipp-pstamp-20260421/pstamp/web/03_pstamp.conf	(revision 43034)
+++ /branches/eam_branches/ipp-pstamp-20260421/pstamp/web/03_pstamp.conf	(revision 43034)
@@ -0,0 +1,51 @@
+#
+# Root of the data store (where the directory hierarchy lives
+#
+
+<VirtualHost *:80>
+    ServerName pstest.ifa.hawaii.edu
+    ServerAlias pstest
+
+    # Use a safe, static document root outside of the datastore directories.
+    # The Rewrites below prevent this from actually being served.
+    DocumentRoot "/var/www/html"
+
+    Alias       /pstamp /data/kukui.2/eugene/datastore.20260421/ps-web/
+    ScriptAlias /ps-cgi /data/kukui.2/eugene/datastore.20260421/ps-cgi/
+
+    Alias       /pstamp-work /data/kukui.2/eugene/datastore.20260421/ps-out/
+
+#   RedirectMatch 302 ^/$ /ps/
+
+    # ensure requests like http://pstamp/foo/bar become http://pstamp/ps/foo/bar
+    # NOTE: requires a2enmod rewrite
+#    RewriteEngine On
+#    RewriteCond %{REQUEST_URI} !^/ps-web(/|$)
+#    RewriteCond %{REQUEST_URI} !^/ps-cgi(/|$)
+#    RewriteRule ^/(.*)$ /ps-web/$1 [R=301,L] 
+
+    <Directory "/data/kukui.2/eugene/datastore.20260421/ps-web">
+    
+      # NOTE: requires a2enmod cgi
+      # ?? DirectoryIndex /ds-cgi/dsindex.cgi
+      Options None
+    
+      # turn on server side includes.  files will be processed for
+      # server side includes if they have the executable bit set.
+      # NOTE: requires a2enmod rewrite
+      # Options +Includes
+      # XBitHack on
+    
+      AllowOverride None
+
+      Require ip 128.171.2.0/24
+    </Directory>
+    
+    # Location of the cgi scripts
+    <Directory "/data/kukui.2/eugene/datastore.20260421/ps-cgi">
+      Options ExecCGI
+      Require ip 128.171.2.0/24
+    </Directory>
+    
+</VirtualHost>
+
