I have setup a proxy on FC3 with apache... Here's the relevent info in httpd.conf
I have those error message in apache error log.
So from what I understand, the html re-writer mod_proxy_html need to understand the charset coming from the proxied web server. This particular one is using a windows charset that apache on linux does not understand and this is giving a parsing error and the proxy of that server fails.
Any ideas of what I can do?
Is there a way to make apache understand the charset Windows-1252?
Thanks
Simon
ProxyPass /intranet/ ProxyHTMLURLMap /intranet
<Location /intranet/>
ProxyPassReverse /
SetOutputFilter proxy-html
ProxyHTMLURLMap / /intranet/
ProxyHTMLURLMap /intranet /intranet
RequestHeader unset Accept-Encoding
ProxyHTMLExtended On
</Location>
I have those error message in apache error log.
Unsupported charset Windows-1252 in HTML META
No usable charset information: using old HTTP default LATIN1
So from what I understand, the html re-writer mod_proxy_html need to understand the charset coming from the proxied web server. This particular one is using a windows charset that apache on linux does not understand and this is giving a parsing error and the proxy of that server fails.
Any ideas of what I can do?
Is there a way to make apache understand the charset Windows-1252?
Thanks
Simon