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.15 by root, Wed Aug 29 01:32:50 2001 UTC vs.
Revision 1.18 by root, Mon Sep 3 00:06:06 2001 UTC

1$MAX_CONNECTS = 40; # maximum simult. connects 1$MAX_CONNECTS = 2000; # maximum simult. connects
2$MAX_TRANSFER = 1; # the maximum number of sim. file transfers 2$MAX_TRANSFERS_SMALL = 100; # the maximum number of sim. file transfers
3$MAX_TRANSFERS_LARGE = 300; # the maximum number of sim. file transfers
4$TRANSFER_SMALL = 1_000_000; # size of a "small" file
3 5
4$MAX_CONN_IP = 4000; # maximum simult. connects per ip 6$MAX_CONN_IP = 4; # maximum simult. connects per ip
5$BLOCKTIME = 7200; # block time 7$BLOCKTIME = 7200; # block time
6 8
7$NO_SEGMENTED = 1; # allow segmented downloads? 9$NO_SEGMENTED = 1; # allow segmented downloads?
8 10
9$REQ_TIMEOUT = 60; # request timeout 11$REQ_TIMEOUT = 60; # request timeout
16 18
17$DOCROOT = "/usr/www/htdocs"; # document root 19$DOCROOT = "/usr/www/htdocs"; # document root
18 20
19$SERVER_HOST = "0.0.0.0"; # host to bind on 21$SERVER_HOST = "0.0.0.0"; # host to bind on
20$SERVER_PORT = 80; # port to listen on 22$SERVER_PORT = 80; # port to listen on
23$SERVER_PORT2 = 88; # port to listen on
21 24
22$CMDSHELL_PORT = 7262; # open a command shell on this port 25$CMDSHELL_PORT = 7262; # open a command shell on this port
23 26
24$BUFSIZE = 16*1024; # buffer size 27$BUFSIZE = 16*1024; # buffer size
25 28

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines