ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Coro/myhttpd/config.pl.dist
Revision: 1.28
Committed: Tue Sep 10 03:08:03 2002 UTC (21 years, 9 months ago) by root
Branch: MAIN
Changes since 1.27: +2 -0 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.26 $MAX_CONNECTS = 100; # maximum simult. connects
2 root 1.27 $MAX_TRANSFERS = 10; # the maximum number of sim. file transfers
3 root 1.3
4 root 1.25 $MAX_TRANSFERS_IP = 4; # maximum simult. connects per ip
5 root 1.24 $BLOCKTIME = 60*60*2; # block time
6 root 1.3
7 root 1.27 $NO_SEGMENTED = 0; # disallow segmented downloads?
8 root 1.3
9 root 1.1 $REQ_TIMEOUT = 60; # request timeout
10     $RES_TIMEOUT = 180; # response timeout
11 root 1.9 $PER_TIMEOUT = 120; # persistent connection timeout
12 root 1.3
13 root 1.19 $MAX_POOL = 20; # max. number of idle workers
14 root 1.3
15 root 1.14 $DB_HOME = "db"; # database home directory
16 root 1.13
17 root 1.1 $DOCROOT = "/usr/www/htdocs"; # document root
18 root 1.3
19 root 1.1 $SERVER_HOST = "0.0.0.0"; # host to bind on
20 root 1.26 $SERVER_PORT = 88; # port to listen on
21 root 1.2
22 root 1.3 $CMDSHELL_PORT = 7262; # open a command shell on this port
23 root 1.5
24 root 1.27 $WAIT_INTERVAL = 60*5; # check for free slot this often
25     $WAIT_BUFSIZE = 512; # send this much data while waiting
26 root 1.24
27     $BUFSIZE = 32*1024; # buffer size
28 root 1.8
29 root 1.28 $TBF_RATE = 100000000;
30    
31 root 1.8 $AIO_PARALLEL = 1; # how many reader threads for i/o?
32 root 1.11
33     $ACCESS_LOG = "logs/accesslog"; # access log
34 root 1.27 $ERROR_LOG = "logs/errorlog"; # error log
35 root 1.25