Added:
trunk/index.html
Modified:
trunk/lighttpd.conf
Log:
friendlier starting page
Added: trunk/index.html
==============================================================================
--- (empty file)
+++ trunk/index.html Fri Oct 17 15:15:23 2008
@@ -0,0 +1,19 @@
+<html>
+<head>
+ <title>openid-test</title>
+</head>
+<body>
+<h1>openid-test</h1>
+<p>
+Welcome to the openid-test server, part of the <a
href="http://code.google.com/p/openid-test/">openid-test project</a>.
+</p>
+<p>From here you can hit the various implementations of the test spec:</p>
+<ul>
+<li><a href="/perl/perl-test.cgi">Perl</a></li>
+<li><a href="/janrain-python/janrain_python.py">Janrain Python</a></li>
+</ul>
+
+
+</body>
+</html>
+
Modified: trunk/lighttpd.conf
==============================================================================
--- trunk/lighttpd.conf (original)
+++ trunk/lighttpd.conf Fri Oct 17 15:15:23 2008
@@ -7,6 +7,15 @@
server.modules = ( "mod_cgi", "mod_setenv" )
+index-file.names = ("index.html")
+
+mimetype.assign = (
+ ".html" => "text/html",
+ ".txt" => "text/plain",
+ ".jpg" => "image/jpeg",
+ ".png" => "image/png"
+)
+
setenv.add-environment = (
"MEMCACHE" => env.MEMCACHE
)