Index: tools/FreeBSD6_x/INSTALL.txt
===================================================================
--- tools/FreeBSD6_x/INSTALL.txt	(revision 5722)
+++ tools/FreeBSD6_x/INSTALL.txt	(revision 5722)
@@ -0,0 +1,63 @@
+!!! BEGIN WARNING !!!
+This script are NOT written to run in a production envirionment,
+people who has access to the subversion genesis directory all allowed to
+put marvilous code in there, which will potentially ruin your machine
+!!! END WARNING !!!!
+
+
+In order to get the genesis webinterface up and running we need to
+configure some bits and pieces:
+* Apache
+* Subversion (in order to update)
+* Perl
+
+So lets get started:
+#Make a working directory and jump to it
+$mkdir /usr/local/www/data/genesis
+$cd /usr/local/www/data/genesis
+
+#Make a checkout of the genesis directory
+$svn co http://svn.wirelessleiden.nl/svn/node-config/genesis .
+#Allow the webserver to update nodes
+$chown -R www:www nodes
+
+#Make local config file
+$mv tools/FreeBSD6_x/genesis.conf.local{.tmpl,}
+
+#Edit the following variables $home, $server, $cgi_dir (and others and
+#needed)
+$vim tools/FreeBSD6_x/genesis.conf.local
+
+Next job, apache configuration
+=== begin httpd.conf ===
+<VirtualHost *:80>
+   ServerName wlconfig
+   ServerAlias wlconfig.wzoeterwoude.net
+   ServerAlias rick.wleiden.net
+   ServerAlias 172.27.129.66
+   DocumentRoot "/usr/local/www/data/genesis"
+
+    ErrorLog "|/usr/local/sbin/rotatelogs \
+    /var/log/httpd/wlconfig.wzoeterwoude.net-error-%Y-%m-%d.log 5M"
+    CustomLog "|/usr/local/sbin/rotatelogs \
+    /var/log/httpd/wlconfig.wzoeterwoude.net-access-%Y-%m-%d.log 5M" combined
+
+
+   DirectoryIndex g_list.pl
+   AddHandler cgi-script .pl
+
+   <Directory "/usr/local/www/data/genesis">
+      Options +ExecCGI
+      AllowOverride None
+      Allow from all
+   </Directory>
+
+</VirtualHost>
+=== begin httpd.conf ===
+
+Restart apache and hit your webbrowser to the configured webpage
+
+Thats all folks :-), questions/problems/suggestions ->
+<beheer@lijst.wirelessleiden.nl> (english/dutch)
+
+/Rick <rick@wirelessleiden.nl>
Index: tools/FreeBSD6_x/g_list.pl
===================================================================
--- tools/FreeBSD6_x/g_list.pl	(revision 5721)
+++ tools/FreeBSD6_x/g_list.pl	(revision 5722)
@@ -6,7 +6,8 @@
 
 # Config located at other file
-my $conf_file="./genesis.conf";
+my $local_conf_file="./genesis.conf.local";
+do($local_conf_file) || die("Cann't open $local_conf_file");
+
 do($conf_file) || die("Cann't open $conf_file");
-
 
 
Index: tools/FreeBSD6_x/genesis.conf
===================================================================
--- tools/FreeBSD6_x/genesis.conf	(revision 5721)
+++ tools/FreeBSD6_x/genesis.conf	(revision 5722)
@@ -1,3 +1,3 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl -
 #
 # Variable file
@@ -26,25 +26,5 @@
                        );
 
-#(inter)net env
-if( defined $ENV{'SERVER_NAME'} ) {
-  $hostname=$ENV{'SERVER_NAME'};
-}
-else {
-  $hostname=`hostname`;
-};
 
-chomp($hostname);
-$cgi_dir="http://$hostname/freebsd/6.0";
-$source="$cgi_dir/g_list.pl";
-
-#path variablen
-$home="/usr/local/www/data/wlconfig";
-$ndir="$home/nodes";
-$toolfile="$home/freebsd/6.0/wleiden.pl";
-
-
-#exec vars
-$svn="/usr/local/bin/svn";
-$wicontrol='/usr/sbin/wicontrol';
 
 #naming vars
@@ -57,4 +37,9 @@
 $dnsheader_confPath="$home/dns/dnsheader.conf";
 
+#node dir
+$ndir="$home/nodes";
+
+#wleiden.pl Path
+$toolfile="$home/tools/FreeBSD6_x/wleiden.pl";
 
 ## ssh key variablen ##
Index: tools/FreeBSD6_x/genesis.conf.local.tmpl
===================================================================
--- tools/FreeBSD6_x/genesis.conf.local.tmpl	(revision 5722)
+++ tools/FreeBSD6_x/genesis.conf.local.tmpl	(revision 5722)
@@ -0,0 +1,25 @@
+#!/usr/bin/perl -w
+#
+# Local variable file
+
+#path variablen
+$home="/usr/local/www/data/genesis";
+$conf_file="$home/tools/FreeBSD6_x/genesis.conf";
+
+
+#(inter)net env
+if( defined $ENV{'SERVER_NAME'} ) {
+  $hostname=$ENV{'SERVER_NAME'};
+}
+else {
+  $hostname=`hostname`;
+};
+
+chomp($hostname);
+$cgi_dir="http://$hostname/freebsd/6.0";
+$source="$cgi_dir/g_list.pl";
+
+#exec vars
+$svn="/usr/local/bin/svn";
+$wicontrol='/usr/sbin/wicontrol';
+
Index: tools/FreeBSD6_x/wleiden.pl
===================================================================
--- tools/FreeBSD6_x/wleiden.pl	(revision 5721)
+++ tools/FreeBSD6_x/wleiden.pl	(revision 5722)
@@ -6,5 +6,8 @@
 
 # Config located at other file
-my $conf_file="/home/genesis/tools/FreeBSD6_x/genesis.conf";
+# Config located at other file
+my $local_conf_file="./genesis.conf.local";
+do($local_conf_file) || die("Cann't open $local_conf_file");
+
 do($conf_file) || die("Cann't open $conf_file");
 ################ END OF CONFIG ##########################
