[http://naviserver.sourceforge.net/ns_logobig.gif] [NaviServer%|%Main%|%] ✸ http://bitbucket.org/naviserver/naviserver/%|%Source Code %|% ✸ http://sourceforge.net/project/showfiles.php?group_id=130646%|%Downloads %|% ✸ http://naviserver.sourceforge.net/n/toc.html%|%API Documentation %|% ✸ http://sourceforge.net/mail/?group_id=130646%|%Mailing Lists%|% ✸ http://sourceforge.net/tracker/?group_id=130646&atid=719006%|%Bugs %|% ✸ https://www.ohloh.net/p/naviserver/contributors%|%Developers %|% ---- **Minimal Configuration** This is the the bare minimum needed to get a Naviserver installation serving up a web page. ======tcl # Name/description/domain of the virtual server set server_name alpha ################################################################ # Modules ################################################################ ns_section "ns/modules" # Modules to load for the server(s) ns_param nssock /usr/lib/naviserver/bin/nssock.so ################################################################ # Servers ################################################################ ns_section "ns/servers" # The server(s) ns_param $server_name "Naviserver $server_name" ################################################################# # ################################################################# ns_section "ns/module/nssock/servers" # Specify the server(s) and their addresses ns_param $server_name alpha.co.uk ################################################################# # Fastpath ################################################################# ns_section "ns/server/${server_name}/fastpath" # Defines absolute or relative to serverdir directory where all # html/adp pages are located ns_param pagedir /var/www/alpha.co.uk # Directory index/default page to look for. ns_param directoryfile "index.html" ====== <>NaviServer