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.2 by root, Thu Aug 9 19:11:13 2001 UTC vs.
Revision 1.27 by root, Wed Feb 20 15:06:51 2002 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines