File:  [LON-CAPA] / loncom / Attic / lonhttpd.conf
Revision 1.1: download - view: text, annotated - select for diffs
Wed Oct 6 21:38:53 2004 UTC (19 years, 7 months ago) by albertel
Branches: MAIN
CVS tags: version_2_2_X, version_2_2_2, version_2_2_1, version_2_2_0, version_2_1_X, version_2_1_99_3, version_2_1_99_2, version_2_1_99_1, version_2_1_99_0, version_2_1_3, version_2_1_2, version_2_1_1, version_2_1_0, version_2_0_X, version_2_0_99_1, version_2_0_2, version_2_0_1, version_2_0_0, version_1_99_3, version_1_99_2, version_1_99_1_tmcc, version_1_99_1, version_1_99_0_tmcc, version_1_99_0, version_1_3_X, version_1_3_3, version_1_3_2, version_1_3_1, version_1_3_0, version_1_2_99_1, version_1_2_99_0, HEAD
- config file for running a seperate apache team as a replacement for lonhttpd

    1: ServerType standalone
    2: ServerRoot "/home/httpd/perl"
    3: LockFile /home/httpd/perl/logs/lonhttpd.lock
    4: PidFile /home/httpd/perl/logs/lonhttpd.pid
    5: ScoreBoardFile /home/httpd/perl/logs/lonhttpd_runtime_status
    6: Timeout 300
    7: KeepAlive On
    8: MaxKeepAliveRequests 100
    9: KeepAliveTimeout 15
   10: MinSpareServers 1
   11: MaxSpareServers 10
   12: StartServers 3
   13: MaxClients 150
   14: MaxRequestsPerChild 1000
   15: #LoadModule mmap_static_module modules/mod_mmap_static.so
   16: LoadModule config_log_module  /etc/httpd/modules/mod_log_config.so
   17: LoadModule mime_module        /etc/httpd/modules/mod_mime.so
   18: LoadModule status_module      /etc/httpd/modules/mod_status.so
   19: LoadModule cgi_module         /etc/httpd/modules/mod_cgi.so
   20: #LoadModule alias_module       /etc/httpd/modules/mod_alias.so
   21: LoadModule access_module      /etc/httpd/modules/mod_access.so
   22: LoadModule auth_module        /etc/httpd/modules/mod_auth.so
   23: LoadModule expires_module     /etc/httpd/modules/mod_expires.so
   24: ClearModuleList
   25: #AddModule mod_mmap_static
   26: AddModule mod_log_config.c
   27: AddModule mod_mime.c
   28: AddModule mod_status.c
   29: AddModule mod_cgi.c
   30: #AddModule mod_alias.c
   31: AddModule mod_access.c
   32: AddModule mod_auth.c
   33: AddModule mod_expires.c
   34: AddModule mod_so.c
   35: #ExtendedStatus On
   36: Port 8080
   37: User www
   38: Group www
   39: ServerAdmin root@localhost
   40: DocumentRoot "/home/httpd/html"
   41: <Directory />
   42:     Options None
   43:     AllowOverride None
   44:     Order deny,allow
   45:     Deny from all
   46: </Directory>
   47: <Directory "/home/httpd/html/adm">
   48:     Options None
   49:     AllowOverride None
   50:     Order allow,deny
   51:     Allow from all
   52: </Directory>
   53: <Directory "/home/httpd/html/res/adm">
   54:     Options None
   55:     AllowOverride None
   56:     Order allow,deny
   57:     Allow from all
   58: </Directory>
   59: UseCanonicalName On
   60: <IfModule mod_mime.c>
   61:     TypesConfig /etc/mime.types
   62: </IfModule>
   63: DefaultType text/plain
   64: HostnameLookups Off
   65: ErrorLog /home/httpd/perl/logs/lonhttpd_error_log
   66: LogLevel warn
   67: LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
   68: CustomLog /home/httpd/perl/logs/lonhttpd.log combined
   69: ServerSignature Off
   70: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>