> > The record in access_log:
> >
> > 192.168.2.11 - - [date] "GET /file.htm HTTP/1.1" 200 8731 "-"
> > "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0")"
>
> what's in your error_log?

[Fri Dec  8 11:14:00 2000] [info] created shared memory segment
#256
[Fri Dec  8 11:14:00 2000] [notice] Apache/1.3.14 (Unix)
mod_perl/1.24_01 config
ured -- resuming normal operations
[Fri Dec  8 11:14:00 2000] [info] Server built: Dec  8 2000
11:12:10

No error messages.

> Why do you use ETag header?

Good question :)
I didn't enable the usage of ETag somehow explicitly. I don't
know why it is used.

Now i'm trying to use minimal config. Here is my httpd.conf:

# Global Environment

ServerType standalone
ServerRoot "/home/httpd"
PidFile /var/run/httpd.pid
Timeout 300
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 15
MinSpareServers 5
MaxSpareServers 10
StartServers 5
MaxClients 150
MaxRequestsPerChild 0

# Main server configuration

Port 80
User www
Group www
DocumentRoot "/home/httpd/web"

<Directory />
    Options None
    AllowOverride None
    Order deny,allow
    Deny from all
</Directory>

<Directory "/home/httpd/web">
    Options None
    AllowOverride None
    Order allow,deny
    Allow from all
</Directory>

UseCanonicalName On

<IfModule mod_mime.c>
    TypesConfig /etc/httpd/conf/mime.types
</IfModule>

DefaultType text/plain
HostnameLookups Off
ErrorLog /var/log/httpd/error_log
LogLevel debug
ServerSignature On

<IfModule mod_setenvif.c>
    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
</IfModule>

List of compiled-in modules:
  http_core.c
  mod_log_config.c
  mod_mime.c
  mod_include.c
  mod_dir.c
  mod_cgi.c
  mod_alias.c
  mod_access.c
  mod_auth.c
  mod_setenvif.c
  mod_perl.c

> > Accept-Ranges: bytes
> > Content-Length: 0
>
> No content?

This is very strange for me too. But even if content-length is 0,
the document is retrieved properly with GET.

ek




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to