Conf/Examples/TclConfig

From AOLserver Wiki
Jump to navigation Jump to search

TCL Library Configuration

part of AOLserver Config Examples

The config file

# Global Parameters
ns_section ns/parameters
ns_param home /usr/lib/aolserver4
ns_param servername "Main AOLserver Process"
ns_param serverlog /var/log/aolserver4/virtual-hosts.log
ns_param pidfile /var/run/aolserver4/virtual-hosts.pid
ns_section ns/servers
ns_param   server1 "Website 1"
# virtual server 1 
ns_section ns/server/server1
ns_param   directoryfile   index.html
ns_param   pageroot        /var/www/vhost1
# modules for server1
ns_section ns/server/server1/modules
  ns_param   nssock        nssock.so
  ns_param   nslog         nslog.so
  ns_param   nscgi         nscgi.so
# Configure nssock
ns_section ns/server/server1/module/nssock
  ns_param port 80
  ns_param address 127.0.0.1
# Configure server1 accesslog
  ns_section ns/server/server1/module/nslog
  ns_param   file            /var/log/aolserver4/example1.com.access.log
 # Configure TCL Library
  ns_section ns/server/server1/tcl
  ns_param   library  /var/www/vhost1/tcl
 

Note

If a Tcl directory is specified, the init.tcl file in that directory is sourced first (if it exists), and then all the remaining .tcl files are sourced alphabetically.

A simple tcl script using Tcl Library