tornado-conf.xml
来自「纯java服务器」· XML 代码 · 共 35 行
XML
35 行
<?xml version="1.0"?>
<!-- $Id: tornado-conf.xml,v 1.6 2001/01/16 01:24:02 nconway Exp $ -->
<!DOCTYPE tornado-conf SYSTEM "tornado-conf.dtd">
<tornado>
<host name="default" type="default">
<logging>
<errorLog>
<logLevel>DEBUG</logLevel>
<logFile>/tmp/tornado-logs/error</logFile>
</errorLog>
<accessLog>
<logFormat>%s %s %s %s %s</logFormat>
<logFile>/tmp/tornado-logs/access</logFile>
</accessLog>
</logging>
<port>8080</port>
<adminEmail>root@localhost</adminEmail>
<documentRoot>/home/nconway/website</documentRoot>
</host>
<!-- settings which affect the behavior of the entire httpd,
and couldn't possibly be altered per-virtual host: such as
module loading, threading behavior, lock files, etc.-->
<system>
<threads>
<startThreads>15</startThreads>
<minIdleThreads>5</minIdleThreads>
<maxIdleThreads>10</maxIdleThreads>
<maxThreads>100</maxThreads>
</threads>
</system>
</tornado>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?