--- eg_vhost.conf.orig	2009-07-09 11:03:06.000000000 -0500
+++ eg_vhost.conf	2009-07-13 15:38:24.000000000 -0500
@@ -3,6 +3,85 @@
 # through all virtual hosts (port 80, port 443, etc.) should live in here.
 # ----------------------------------------------------------------------------------
 
+#--cut from eg.conf--
+
+LogLevel info
+# - log locally
+CustomLog /var/log/apache2/access.log combined
+ErrorLog /var/log/apache2/error.log
+# - log to syslog 
+# CustomLog "|/usr/bin/logger -p local7.info" common
+# ErrorLog syslog:local7
+
+
+# ----------------------------------------------------------------------------------
+# Set up Perl 
+# ----------------------------------------------------------------------------------
+
+# - needed by CGIs
+SetEnv PERL5LIB /openils/lib/perl5
+# These must go in http.conf
+#PerlRequire /etc/apache2/startup.pl
+#PerlChildInitHandler OpenILS::WWW::Reporter::child_init
+#PerlChildInitHandler OpenILS::WWW::SuperCat::child_init
+#PerlChildInitHandler OpenILS::WWW::AddedContent::child_init;
+
+
+# ----------------------------------------------------------------------------------
+# Set some defaults for our working directories
+# ----------------------------------------------------------------------------------
+<Directory /openils/var/web>
+    Order allow,deny
+    Allow from all
+</Directory>
+
+
+# ----------------------------------------------------------------------------------
+# XUL directory
+# ----------------------------------------------------------------------------------
+<Directory /openils/var/web/xul>
+   Options Indexes FollowSymLinks
+   AllowOverride None
+   Order allow,deny
+   Allow from all
+</Directory>
+
+
+# ----------------------------------------------------------------------------------
+# Remove the language portion from the URL
+# ----------------------------------------------------------------------------------
+AliasMatch ^/opac/.*/skin/(.*)/(.*)/(.*) /openils/var/web/opac/skin/$1/$2/$3
+AliasMatch ^/opac/.*/extras/slimpac/(.*) /openils/var/web/opac/extras/slimpac/$1
+AliasMatch ^/opac/.*/extras/selfcheck/(.*) /openils/var/web/opac/extras/selfcheck/$1
+
+
+
+# ----------------------------------------------------------------------------------
+# System config CGI scripts go here
+# ----------------------------------------------------------------------------------
+Alias /cgi-bin/ "/openils/var/cgi-bin/"
+<Directory "/openils/var/cgi-bin">
+	AddHandler cgi-script .cgi .pl
+	AllowOverride None
+	Options None
+	Order deny,allow
+	Deny from all
+	Allow from all
+	Options FollowSymLinks ExecCGI Indexes
+</Directory>
+
+# ----------------------------------------------------------------------------------
+# OPTIONAL: Set how long the client will cache our content.  Change to suit
+# ----------------------------------------------------------------------------------
+ExpiresActive On
+ExpiresDefault A2592000
+ExpiresByType text/html A64800
+ExpiresByType application/xhtml+xml A64800
+ExpiresByType application/x-javascript A64800
+ExpiresByType text/css A3000
+
+#--end cut--
+
 # ----------------------------------------------------------------------------------
 # Point / to the opac
 # ----------------------------------------------------------------------------------