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

Comparing Coro/myhttpd/config.pl.dist (file contents):
Revision 1.10 by root, Sun Aug 19 22:14:26 2001 UTC vs.
Revision 1.20 by root, Fri Sep 28 16:35:00 2001 UTC

1$MAX_CONNECTS = 500; # maximum simult. connects 1$MAX_CONNECTS = 100; # maximum simult. connects
2$MAX_TRANSFERS_SMALL = 3; # the maximum number of sim. file transfers
3$MAX_TRANSFERS_LARGE = 5; # the maximum number of sim. file transfers
4$TRANSFER_SMALL = 1_000_000; # size of a "small" file
2 5
3$MAX_CONN_IP = 4000; # maximum simult. connects per ip 6$MAX_CONN_IP = 1; # maximum simult. connects per ip
4$BLOCKTIME = 7200; # block time 7$BLOCKTIME = 86400; # block time
5 8
6$NO_SEGMENTED = 1; # allow segmented downloads? 9$NO_SEGMENTED = 1; # 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
10$PER_TIMEOUT = 120; # persistent connection timeout 13$PER_TIMEOUT = 120; # persistent connection timeout
11 14
12$MAX_POOL = 20; # max. number of idle workers 15$MAX_POOL = 20; # max. number of idle workers
13 16
17$DB_HOME = "db"; # database home directory
18
14$DOCROOT = "/usr/www/htdocs"; # document root 19$DOCROOT = "/usr/www/htdocs"; # document root
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 = 80; # 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
20 25
21$BUFSIZE = 16*1024; # buffer size 26$BUFSIZE = 256*1024; # buffer size
22 27
23$AIO_PARALLEL = 1; # how many reader threads for i/o? 28$AIO_PARALLEL = 1; # how many reader threads for i/o?
29
30$ACCESS_LOG = "logs/accesslog"; # access log

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines