This is a discussion on mod_proxy directives not recognized within the Linux Web Servers forums, part of the Web Server and Related Forums category; Somebody else had this problem, but their resolution doesn't seem to work for me: http://groups.google.ie/group/...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Somebody else had this problem, but their resolution doesn't seem to
work for me: http://groups.google.ie/group/comp.i...sbh_lwnCnoFVf1 Incredibly annoying: I've configured 2.0.54 with --enable-proxy, httpd -l shows that it is present, yet I get "Invalid command 'ProxyRequests'" when I start up httpd. There is no 'ClearModuleList' in my httpd.conf, and much googling hasn't shed any light on why a compiled-in module wouldn't be available. Can anyhow help me figure out how to diagnose this? Many thanks, Eric |
|
|||
|
On 21 Jun 2005 06:18:35 -0700, Eric Lennon Bowman <ebowman@boboco.ie> wrote:
> Somebody else had this problem, but their resolution doesn't seem to > work for me: > (long url snipped) > Incredibly annoying: I've configured 2.0.54 with --enable-proxy, httpd > -l shows that it is present, yet I get "Invalid command > 'ProxyRequests'" when I start up httpd. Just to check.. Did you compile them statically or as shared modules? Did mod_proxy_http get compiled as well (it should have with --enable-proxy, but well, better safe than sorry)? Cheers, Tero -- Tero Hänninen | tero@betabyte.net | http://www.betabyte.net/ | Overflow error in /dev/null |
|
|||
|
I'm configuring with this command line:
../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-threads=posix --disable-checking --with-system-zlib --enable-__cxa_atexit --host=i386-redhat-linux --enable-proxy The output of "httpd -l" is below: $ httpd -l Compiled in modules: core.c mod_access.c mod_auth.c mod_include.c mod_log_config.c mod_env.c mod_setenvif.c mod_proxy.c proxy_connect.c proxy_ftp.c proxy_http.c prefork.c http_core.c mod_mime.c mod_status.c mod_autoindex.c mod_asis.c mod_cgi.c mod_negotiation.c mod_dir.c mod_imap.c mod_actions.c mod_userdir.c mod_alias.c mod_so.c As you can see, mod_proxy.c is compiled in, so I can't imagine why this wouldn't work. Again, this is 2.0.54. Thanks for your help, Eric |