Does httpd24u include mod_proxy_html?

Asked by David Hubbard

According to the module originator here <http://apache.webthing.com/mod_proxy_html/> this is now included in apache 2.4.

However my install via ius doesnot seem to contain this module

Is it included? Have I missed some configuration?

$ rpm -qa | grep httpd24
httpd24u-tools-2.4.17-1.ius.el6.x86_64
httpd24u-filesystem-2.4.17-1.ius.el6.noarch
httpd24u-2.4.17-1.ius.el6.x86_64

$ apachectl -t -D DUMP_MODULES | grep proxy
 proxy_module (shared)
 proxy_http_module (shared)

Thanks
David

Question information

Language:
English Edit question
Status:
Solved
For:
IUS Community Project Edit question
Assignee:
No assignee Edit question
Solved by:
David Hubbard
Solved:
Last query:
Last reply:
Revision history for this message
bharper (bharper) said :
#1

Hello David,

Thanks for taking the time to post this question. IUS does provide this module as a subpackage, mod24u_proxy_html:

$ apachectl -t -D DUMP_MODULES | grep proxy
 proxy_module (shared)
 proxy_ajp_module (shared)
 proxy_balancer_module (shared)
 proxy_connect_module (shared)
 proxy_express_module (shared)
 proxy_fcgi_module (shared)
 proxy_fdpass_module (shared)
 proxy_ftp_module (shared)
 proxy_http_module (shared)
 proxy_scgi_module (shared)
 proxy_html_module (shared)

Our naming schema can get weird with subpackages named like mod_proxy_html.

Also note, we are trying to move off LaunchPad and over to GitHub. Here are our GitHub organizations:

https://github.com/iuscommunity-pkg
https://github.com/iuscommunity

If you are unsure which repository to submit an issue, you can always use our wishlist repository:

https://github.com/iuscommunity/wishlist

-Ben

Revision history for this message
David Hubbard (david-hubbard) said :
#2

Ben, hi

Many thanks for your quick response - I see it now!

$ sudo yum list -C mod24u_\*
Loaded plugins: replace, rhnplugin, security
Installed Packages
mod24u_ssl.x86_64 1:2.4.17-1.ius.el6
Available Packages
mod24u_ldap.x86_64 2.4.17-1.ius.el6
mod24u_proxy_html.x86_64 2.4.17-1.ius.el6
mod24u_session.x86_64 2.4.17-1.ius.el6

Which (for anyone arriving here later) installed in the normal way (+ warning indicated xml2enc dependency)

$ view httpd.conf
...
LoadModule proxy_html_module modules/mod_proxy_html.so
LoadModule xml2enc_module modules/mod_xml2enc.so
...

Regards
David