Hello, I have spent the afternoon trying to install the mod_proxy module into apache.
I have tried
./configure --prefix=/opt/apache2 --enable-proxy --enable-proxy-http
./configure --prefix=/opt/apache2 --enable-module=proxy
After it finishes installing, navigating to /opt/apache2/modules only shows one file: httpd.exp.
It seems that the module is not being installed.
Any help is appreciated.
Thanks.
-
./configure --enable-proxy=staticwill buildmod_proxylinked statically into the resultinghttpdexecutable; this is the default if you specify./configure --enable-proxy../configure --enable-proxy=sharedis necessary to build the module as a loadable shared library.Similarly,
./configure --enable-modules=proxywill linkmod_proxystatically into the executable, while./configure --enable-mods-shared=proxywill cause it to be built as a shared library. See the Apache configure documentation for more details.From ephemient
0 comments:
Post a Comment