ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/cvsroot/Coro/myhttpd/config.pl.dist
Revision: 1.2
Committed: Thu Aug 9 19:11:13 2001 UTC (22 years, 11 months ago) by root
Branch: MAIN
Changes since 1.1: +4 -1 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 $MAX_CONNECTS = 500; # maximum simult. connects
2 root 1.2 $MAX_CONN_IP = 4; # maximum simult. connects per ip
3     $SEGMENTED_OK = 0; # allow segmented downloads?
4 root 1.1 $REQ_TIMEOUT = 60; # request timeout
5     $RES_TIMEOUT = 180; # response timeout
6     $MAX_POOL = 20; # max. number of idle workers
7     $DOCROOT = "/usr/www/htdocs"; # document root
8     $INDEXPROG = "/usr/www/bin/dols"; # indexing program (nph-cgi script)
9     $SERVER_HOST = "0.0.0.0"; # host to bind on
10 root 1.2 $SERVER_PORT = 84; # port to listen on
11    
12 root 1.1