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.18 by root, Mon Sep 3 00:06:06 2001 UTC vs.
Revision 1.19 by root, Mon Sep 10 22:16:20 2001 UTC

1$MAX_CONNECTS = 2000; # maximum simult. connects 1$MAX_CONNECTS = 20; # maximum simult. connects
2$MAX_TRANSFERS_SMALL = 100; # the maximum number of sim. file transfers 2$MAX_TRANSFERS_SMALL = 3; # the maximum number of sim. file transfers
3$MAX_TRANSFERS_LARGE = 300; # the maximum number of sim. file transfers 3$MAX_TRANSFERS_LARGE = 3; # the maximum number of sim. file transfers
4$TRANSFER_SMALL = 1_000_000; # size of a "small" file 4$TRANSFER_SMALL = 1_000_000; # size of a "small" file
5 5
6$MAX_CONN_IP = 4; # maximum simult. connects per ip 6$MAX_CONN_IP = 4; # maximum simult. connects per ip
7$BLOCKTIME = 7200; # block time 7$BLOCKTIME = 7200; # block time
8 8
10 10
11$REQ_TIMEOUT = 60; # request timeout 11$REQ_TIMEOUT = 60; # request timeout
12$RES_TIMEOUT = 180; # response timeout 12$RES_TIMEOUT = 180; # response timeout
13$PER_TIMEOUT = 120; # persistent connection timeout 13$PER_TIMEOUT = 120; # persistent connection timeout
14 14
15$MAX_POOL = 3; # max. number of idle workers 15$MAX_POOL = 20; # max. number of idle workers
16 16
17$DB_HOME = "db"; # database home directory 17$DB_HOME = "db"; # database home directory
18 18
19$DOCROOT = "/usr/www/htdocs"; # document root 19$DOCROOT = "/usr/www/htdocs"; # document root
20 20
21$SERVER_HOST = "0.0.0.0"; # host to bind on 21$SERVER_HOST = "0.0.0.0"; # host to bind on
22$SERVER_PORT = 80; # port to listen on 22$SERVER_PORT = 88; # port to listen on
23$SERVER_PORT2 = 88; # port to listen on
24 23
25$CMDSHELL_PORT = 7262; # open a command shell on this port 24$CMDSHELL_PORT = 7262; # open a command shell on this port
26 25
27$BUFSIZE = 16*1024; # buffer size 26$BUFSIZE = 256*1024; # buffer size
28 27
29$AIO_PARALLEL = 1; # how many reader threads for i/o? 28$AIO_PARALLEL = 1; # how many reader threads for i/o?
30 29
31$ACCESS_LOG = "logs/accesslog"; # access log 30$ACCESS_LOG = "logs/accesslog"; # access log

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines