ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/cvsroot/Coro/myhttpd/config.pl.dist
(Generate patch)

Comparing cvsroot/Coro/myhttpd/config.pl.dist (file contents):
Revision 1.3 by root, Fri Aug 10 02:28:28 2001 UTC vs.
Revision 1.26 by root, Sat Feb 2 15:41:22 2002 UTC

1$MAX_CONNECTS = 500; # maximum simult. connects 1$MAX_CONNECTS = 100; # maximum simult. connects
2$MAX_TRANSFERS_SMALL = 1; # the maximum number of sim. file transfers
3$MAX_TRANSFERS_LARGE = 1; # the maximum number of sim. file transfers
4$TRANSFER_SMALL = 1_000_000; # size of a "small" file
2 5
3$MAX_CONN_IP = 4; # maximum simult. connects per ip 6$MAX_TRANSFERS_IP = 4; # maximum simult. connects per ip
4$BLOCKTIME = 21600; # block time 7$BLOCKTIME = 60*60*2; # block time
5 8
6$SEGMENTED_OK = 0; # allow segmented downloads? 9$NO_SEGMENTED = 0; # allow segmented downloads?
7 10
8$REQ_TIMEOUT = 60; # request timeout 11$REQ_TIMEOUT = 60; # request timeout
9$RES_TIMEOUT = 180; # response timeout 12$RES_TIMEOUT = 180; # response timeout
13$PER_TIMEOUT = 120; # persistent connection timeout
10 14
11$MAX_POOL = 20; # max. number of idle workers 15$MAX_POOL = 20; # max. number of idle workers
12 16
17$DB_HOME = "db"; # database home directory
18
13$DOCROOT = "/usr/www/htdocs"; # document root 19$DOCROOT = "/usr/www/htdocs"; # document root
14$INDEXPROG = "/usr/www/bin/dols"; # indexing program (nph-cgi script)
15 20
16$SERVER_HOST = "0.0.0.0"; # host to bind on 21$SERVER_HOST = "0.0.0.0"; # host to bind on
17$SERVER_PORT = 84; # port to listen on 22$SERVER_PORT = 88; # port to listen on
18 23
19$CMDSHELL_PORT = 7262; # open a command shell on this port 24$CMDSHELL_PORT = 7262; # open a command shell on this port
25
26$WAIT_INTERVAL = 1; # check for free slot this often
27$WAIT_BUFSIZE = 5; # send this much data while waiting
28
29$BUFSIZE = 32*1024; # buffer size
30
31$AIO_PARALLEL = 1; # how many reader threads for i/o?
32
33$ACCESS_LOG = "logs/accesslog"; # access log
34$ERROR_LOG = "logs/errorlog"; # access log
35

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines