Hi Alex,
By default the url
http://server/
shows the turbogears start page.
How do I have to configure it so that the url http://server/ serves
the
file static/index.html in the same way as
http://server/static/index.html
would do?
if you are using TG from SVN, this might work (haven't tested it):
add this to the end of your config.py:
path("/")
staticFilter.on = True
staticFilter.file = absfile("***your package name here***", "static/
index.html")
But I guess sooner or longer you might want to have some dynamic
content on your start page...
ciao
Martina