| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 | # tntnet.confPropertyFile	/etc/tntnet/tntnet.propertiesListen	    0.0.0.0 80#SslListen  0.0.0.0 443 /etc/tntnet/tntnet.pemDaemon	    1User	    tntnetGroup	    tntnetCompPath    /usr/lib/tntnet# set some limit to prevent DoS-attacksMaxRequestSize     1048576  # 1 MB#Dir                /#Chroot             /var/safedirPidFile            /var/run/tntnet.pidMinThreads         2MaxThreads         4#ThreadStartDelay   0  # in ms#QueueSize          100#CompPath           path#Load               webapp  # preload webapplication#BufferSize         16384#SocketReadTimeout  200#SocketWriteTimeout 10000#KeepAliveTimeout   15000#KeepAliveMax       100#SessionTimeout     300#CompLifetime       10#MaxRequestTime     600#ReportStateTime    1200#include /etc/tntnet.d/*.confinclude /etc/tntnet/mime.conf# make demos callable#MapUrl  ^/demos/controls$            redirect@tntnet /demos/controls/#MapUrl  ^/demos/controls/(.+)\..*    $1@controls#MapUrl  ^/demos/controls/$           index@controls  index#MapUrl  ^/demos/controls/(.+)        index@controls  $1#MapUrl  ^/demos/(.+)\..*             $1@$1    $1#MapUrl  ^/demos/(.+)                 $1@$1#MapUrl  ^/demos/tntnet.jpg           tntnet@hello# configure tntnet as a simple webserverDocumentRoot /wwwMapUrl  (.*)/$  static@tntnet /$1/index.htmlMapUrl  ^/(.*)$ static@tntnet /$1
 |