Annotation of loncom/lonhttpd.conf, revision 1.1

1.1     ! albertel    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>