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.2 by root, Thu Aug 9 19:11:13 2001 UTC vs.
Revision 1.14 by root, Tue Aug 28 02:30:48 2001 UTC

1$MAX_CONNECTS = 500; # maximum simult. connects 1$MAX_CONNECTS = 40; # maximum simult. connects
2
2$MAX_CONN_IP = 4; # maximum simult. connects per ip 3$MAX_CONN_IP = 4000; # maximum simult. connects per ip
4$BLOCKTIME = 7200; # block time
5
3$SEGMENTED_OK = 0; # allow segmented downloads? 6$NO_SEGMENTED = 1; # allow segmented downloads?
7
4$REQ_TIMEOUT = 60; # request timeout 8$REQ_TIMEOUT = 60; # request timeout
5$RES_TIMEOUT = 180; # response timeout 9$RES_TIMEOUT = 180; # response timeout
10$PER_TIMEOUT = 120; # persistent connection timeout
11
6$MAX_POOL = 20; # max. number of idle workers 12$MAX_POOL = 3; # max. number of idle workers
13
14$DB_HOME = "db"; # database home directory
15
7$DOCROOT = "/usr/www/htdocs"; # document root 16$DOCROOT = "/usr/www/htdocs"; # document root
8$INDEXPROG = "/usr/www/bin/dols"; # indexing program (nph-cgi script) 17
9$SERVER_HOST = "0.0.0.0"; # host to bind on 18$SERVER_HOST = "0.0.0.0"; # host to bind on
10$SERVER_PORT = 84; # port to listen on 19$SERVER_PORT = 80; # port to listen on
11 20
21$CMDSHELL_PORT = 7262; # open a command shell on this port
12 22
23$BUFSIZE = 16*1024; # buffer size
24
25$AIO_PARALLEL = 1; # how many reader threads for i/o?
26
27$ACCESS_LOG = "logs/accesslog"; # access log

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines