summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorChristian Pointner <equinox@ffgraz.net>2011-05-08 23:05:13 +0000
committerChristian Pointner <equinox@ffgraz.net>2011-05-08 23:05:13 +0000
commitd638ca18c94bb487f1cbc80a8c70c315c49b090b (patch)
tree8d4885e503819d8832a408404b1894f638f31f23 /README
parent7155420cc090c1f531c7b063ceb5649819ce8d6a (diff)
added README
Diffstat (limited to 'README')
-rw-r--r--README28
1 files changed, 28 insertions, 0 deletions
diff --git a/README b/README
new file mode 100644
index 0000000..1a0e1f6
--- /dev/null
+++ b/README
@@ -0,0 +1,28 @@
+INSTALL
+=======
+
+Copy files to the directory of your choice (i.e. /var/www)
+
+Add the following to you Apache2 Vhost config:
+
+ DocumentRoot /var/www
+ <Directory />
+ Options FollowSymLinks
+ AllowOverride None
+ </Directory>
+ <Directory /var/www>
+ AddType text/html .shtml
+ AddOutputFilter INCLUDES .shtml
+ Options FollowSymlinks MultiViews +Includes
+ AllowOverride None
+ Order allow,deny
+ Allow from all
+ </Directory>
+
+ RewriteEngine on
+ RewriteRule ^/$ /index.shtml [env=SITE:index,PT]
+ RewriteRule ^/([^/]*)\.html$ /index.shtml [env=SITE:$1,PT]
+ RewriteRule ^/([vh])([1-9]|(1[0-3]))$ /essid.shtml [env=CHAN:$2,env=POL:$1,PT]
+
+
+You might need to enable the Rewrite and Include Module.