Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Please check whether you have libxml2 installed in your system.
  2. Download mod_proxy_html.c from from 
    Newtab2
    aliashttp://apache.webthing.com/
    urlhttp://apache.webthing.com/
  3. Now build mod_proxy_html with apxs, apxs -c -I/usr/include/libxml2 -i mod_proxy_html.c
  4. You need to load the following modules, so add the following entries in [/etc/httpd/conf/httpd.conf].

    Code Block
    themeConfluence
      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 
      LoadModule proxy_html_module modules/mod_proxy_html.so
  5. Add the following configuration in your Apache configuration file [/etc/httpd/conf/httpd.conf]

...