Commit cd6055a3e44801dc32d63e0580caa65c4c453de0

More README additions.
README
(28 / 5)
  
1212Features
1313--------
1414* Very simple and light
15* Easily customizable
15* Easily customizable using themes
1616* Extensive syntax for marking up text (using Textile)
1717* Full history tracking support
1818* Basic support for users/authors, by using the HTTP authentication headers
3737For URL rewriting, change the SCRIPT_URL to be the base URL prefix (as
3838is shown in the config file), and add the necessary URL rewrite rules for
3939your webserver. E.g.,
40* For Apache, add the following to your .htaccess:
41 ...
40* For Apache, add the following to .htaccess in your wigit install dir:
41 <IfModule mod_rewrite.c>
42 RewriteEngine On
43 RewriteBase /wigit/
44 RewriteCond %{REQUEST_FILENAME} !-f
45 RewriteRule (.*) /wigit/index.php?r=$1 [L]
46 </IfModule>
4247* For lighttpd, add the following to your config file:
4348 url.rewrite-once (
44 "^/wigit/(.*)\.css" => "$0",
49 "^/wigit/templates/(.*)" => "$0",
4550 "^/wigit(.*)" => "/wigit/index.php?r=$1",
4651 )
47 (where /wigit is replaced by your own base url)
52(where /wigit is replaced by your own base url)
53
54For user support, configure your webserver to require authentication for
55the wigit install dir. E.g.
56* For Apache, add the following to .htaccess in your wigit install dir:
57 AuthType Basic
58 AuthName "My WiGit"
59 AuthUserFile /path/to/passwords/file
60 Require valid-user
61* For lighttpd, add the following to your config file:
62 auth.backend = "htdigest"
63 auth.backend.htdigest.userfile = "/path/to/htdigest/file"
64 auth.require = (
65 "/wigit" => (
66 "method" => "digest",
67 "realm" => "My WiGit",
68 "require" => "valid-user",
69 )
70 )
4871
4972
5073Contact