I'm attempting to use mod_reverse_proxy on my http server and I receive the following URL
Invalid command 'ProxyHTMLURLMap', perhaps mis-spelled or defined by a module not included in the server configuration
I have followed the documentation on the web site, and I built the module from source I downloaded two days ago. I simply want to have the following setup
Net-->| ctl.nine.homelinux.com
(proxy) | --> http://10.0.0.104/conveyortechltd/
Below is my configuration that is causing the error. Any help would be greatly appreciated.
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_http_module modules/mod_proxy_http.so
LoadModule headers_module modules/mod_headers.so
LoadModule deflate_module modules/mod_deflate.so
LoadFile /usr/lib/libxml2.so
#
#Allows us to define proxied sites
#
<VirtualHost ctl.nine.homelinux.com>
ServerName
ctl.nine.homelinux.com
<Location />
ProxyPassReverse http://10.0.0.104/conveyortechltd/
ProxyHTMLURLMap url\(
http://http://10.0.0.104/conveyortechltd/([^\)]*)\) url(http://ctl.nine.homelinux.com$1) Rihe
</Location>
</VirtualHost>
- [EMAIL PROTECTED] Error using Mod Reverse Proxy with Apache 2... Todd Nine
