On Jul 6, 4:34 pm, beagle... RemoveThis @hotmail.com wrote:
> Folks,
>
> I'm getting this error message in my error_log file, and I can't
> figure out what the problem is. I should be seeing a directory
> listing. Any ideas appreciated since I'm rather stumped. Using Apache
> 1.3.3.
>
> Thanks,
> BEA
>
> [bea@frag /var/httpd/conf]$ cat httpd_filedb.conf
> PidFile run/filedb.pid
> Include conf/httpd_common.conf
> Include conf/mod_gzip.conf
>
> MinSpareServers 10
> MaxSpareServers 50
> StartServers 100
> MaxClients 225
>
> LoadModule rewrite_module modules/mod_rewrite.so
> LoadModule headers_module modules/mod_headers.so
>
> <Directory /var/ee/www>
> Options All
> Order Allow,Deny
> Allow from all
> </Directory>
>
> <filesMatch "\.(gif|jpg|css|png|js)$">
> Header set Cache-Control "max-age=604800"
> </filesMatch>
> <Directory /var/ee/www/images>
> Header set Cache-Control "max-age=604800"
> </Directory>
> <Directory /var/ee/www/scripts>
> Header set Cache-Control "max-age=604800"
> </Directory>
>
> ServerName frag.mysite.com
>
> ServerAdmin b... RemoveThis @mysite.com
> DocumentRoot /var/ee/www
>
> ErrorDocument 500 /down.html
> ErrorDocument 502 /down.html
> ErrorDocument 503 /down.html
>
> ProxyIOBufferSize 1048576
>
> Alias /incoming "/home/ftp/pub/incoming"
> RewriteLog "/var/httpd/logs/rewrite_log"
> RewriteLogLevel 4
>
> <Directory "/home/ftp/pub/incoming">
> Options All
> AllowOverride None
> Order allow,deny
> Allow from all
>
> RewriteEngine On
> RewriteBase /incoming
> RewriteRule ^([0-9]{4})_([0-9]{2}_w[0-9]{2})/([^/]+)$
> $1/$2/$3 [R,L]
> </Directory>
> [bea@frag /var/httpd/conf]$ cat httpd_common.conf
> ServerType standalone
> ServerRoot "/var/httpd"
> ScoreBoardFile logs/httpd.scoreboard
> Timeout 300
> KeepAlive On
>
> MaxKeepAliveRequests 10000
> KeepAliveTimeout 3
>
> CoreDumpDirectory logs/core
> LoadModule alias_module modules/mod_alias.so
>
> User httpsd
> Group httpsd
>
> <Directory />
> Options None
> AllowOverride None
> Order Allow,Deny
> Allow from all
> </Directory>
> AccessFileName .htaccess
> <Files ~ "^\.ht">
> Order allow,deny
> Deny from all
> Satisfy All
> </Files>
> UseCanonicalName Off
> ServerSignature Off
> ServerTokens Prod
> TypesConfig conf/mime.types
> HostnameLookups Off
>
> LogLevel debug
>
> LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i
> \"" combined
> LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i
> \" mod_gzip: %{mod_gzip_result}n In:%{mod_gzip_input_size}n -< Out:%
> {mod_gzip_output_size}n = %{mod_gzip_compression_ratio}n pct."
> combined_with_gzip
>
> ErrorLog logs/error_log
> CustomLog logs/access_log combined
>
> <IfModule mod_mime.c>
>
> AddEncoding x-compress Z
> AddEncoding x-gzip gz tgz
>
> AddLanguage da .dk
> AddLanguage nl .nl
> AddLanguage en .en
> AddLanguage et .ee
> AddLanguage fr .fr
> AddLanguage de .de
> AddLanguage el .el
> AddLanguage he .he
> AddCharset ISO-8859-8 .iso8859-8
> AddLanguage it .it
> AddLanguage ja .ja
> AddCharset ISO-2022-JP .jis
> AddLanguage kr .kr
> AddCharset ISO-2022-KR .iso-kr
> AddLanguage nn .nn
> AddLanguage no .no
> AddLanguage pl .po
> AddCharset ISO-8859-2 .iso-pl
> AddLanguage pt .pt
> AddLanguage pt-br .pt-br
> AddLanguage ltz .lu
> AddLanguage ca .ca
> AddLanguage es .es
> AddLanguage sv .se
> AddLanguage cz .cz
> AddLanguage ru .ru
> AddLanguage zh-tw .tw
> AddLanguage tw .tw
> AddCharset Big5 .Big5 .big5
> AddCharset WINDOWS-1251 .cp-1251
> AddCharset CP866 .cp866
> AddCharset ISO-8859-5 .iso-ru
> AddCharset KOI8-R .koi8-r
> AddCharset UCS-2 .ucs2
> AddCharset UCS-4 .ucs4
> AddCharset UTF-8 .utf8
>
> <IfModule mod_negotiation.c>
> LanguagePriority en da nl et fr de el it ja kr no pl pt pt-br ru
> ltz ca es sv tw
> </IfModule>
>
> </IfModule>
>
> BrowserMatch "Mozilla/2" nokeepalive
> BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-
> response-1.0
>
> BrowserMatch "RealPlayer 4\.0" force-response-1.0
> BrowserMatch "Java/1\.0" force-response-1.0
> BrowserMatch "JDK/1\.0" force-response-1.0
>
> DirectoryIndex index.html index.jsp General.htm
> [bea@frag /var/httpd/conf]$ cat mod_gzip.conf
> LoadModule gzip_module modules/mod_gzip.so
> <IfModule mod_gzip.c>
>
> mod_gzip_on Yes
> mod_gzip_can_negotiate Yes
> mod_gzip_static_suffix .gz
> AddEncoding gzip .gz
> mod_gzip_update_static No
> mod_gzip_command_version '/mod_gzip_status'
> mod_gzip_keep_workfiles No
> mod_gzip_minimum_file_size 500
> mod_gzip_maximum_file_size 10485760
> mod_gzip_maximum_inmem_size 131072
> mod_gzip_min_http 1000
> mod_gzip_handle_methods GET POST
> mod_gzip_item_exclude reqheader "User-agent: Mozilla/
> 4.0[678]"
> mod_gzip_item_exclude file \.jsp$
>
> mod_gzip_item_include file \.html$
> mod_gzip_item_include file \.js$
> mod_gzip_item_include file \.css$
>
> mod_gzip_item_include mime ^text/.*$
> mod_gzip_item_include mime ^httpd/unix-directory$
> mod_gzip_item_include mime ^application/x-javascript$
>
> mod_gzip_item_exclude mime ^image/
> mod_gzip_dechunk Yes
> mod_gzip_add_header_count Yes
> mod_gzip_send_vary Yes
>
> </IfModule>
What is the error show?