Hi,
I'm using apache
1.3.23 with mod_proxy (now support HTTP/1.1). I used a sniffer to trace
all trafic beetween my browser, the proxy and the web
server.
The problem is that
beetween browser and proxy the communication is done in HTTP/1.1, but the proxy
request on the web server is done in HTTP/1.0.
Is it a normal
behaviour ?
Here the connection
traces :
browser -> proxy
GET http://www.yahoo.com HTTP/1.1
Host: www.yahoo.com
Proxy-Connection: Keep-Alive
proxy -> web server
GET / HTTP/1.0
Host: www.yahoo.com
Connection: close
web server -> proxy
HTTP/1.0 200 OK
Connection: close
proxy -> browser
HTTP/1.1 200 OK
Transfert-Encoding:
chunked
