> <VirtualHost *:80>
>     ServerAdmin [EMAIL PROTECTED]
>     DocumentRoot  /var/www/html/
>     ServerName mydomain
>     <IfModule mod_proxy.c>
>     ProxyRequests off
>     <Proxy *>
>        Order deny,allow
>        Deny from all
>        Allow from 192.168.80.0/25
>     </Proxy>

Why have a <Proxy> block if you have 'ProxyRequests off'?

>     ProxyPass / http://192.168.3.1/
>     ProxyPassReverse / http://192.168.3.1/
>   </IfModule>
> </VirtualHost>

- Which proxy modules do you load/are statically linked in the binary?
- Is there anything in the errorlog for this request?
- Does the backend application send the file as application/x-png (or
whatever the MIME type of a PNG image is)?

Joost


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to