[Tilde-devel] Progress on HTTPD2
Brought to you by:
tobi
From: Tobias <to...@to...> - 2002-08-24 23:01:25
|
Now the webserver actually works. :) and we can run it in valgrind also (had a strange bug with mutexes) and it is recommended that you do so when you are testing out new functions. The current feature I am working on is the vfs, new configuration format is going to look like this: <configuration name="castro"> <vfs> <filesystem handler="tildevfs" path="/"> <database>intranet</database> <templatepath>/home/tru/www/sites/site_tobi_nu/templates</templatepath> <site> <var name="apa">foo</var> <var name="apan">foon</var> <var name="apa2">foo</var> <var name="apan2">foon</var> </site> </filesystem> <filesystem handler="realfs" path="/"> <docroot>/home/tru/www/sites/site_tobi_nu/docroot</docroot> </filesystem> <filesystem handler="realfs" path="/images"> <docroot>/home/tru/www/sites/site_tobi_nu/img</docroot> </filesystem> </vfs> </configuration> expect this to work sometime tomorrow. //Tobias |