I am running Apache 1.3 on Openbsd 4.8, I want to run a proxy server on the Apache, however, when I enable the following line

LoadModule proxy_module /usr/lib/apache/modules/libproxy.so

in httpd.conf and restart the httpd server, it gives me this error:

Cannot load /usr/lib/apache/modules/libproxy.so into server: File not found

I made sure the path to the .so file is correct. The Apache server is chrooted to /var/www, would that cause this error?

Thanks in advance,

Tian

link|improve this question
feedback

closed as off topic by Michael Myers Oct 24 '11 at 16:06

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

1 Answer

For solve this problem, you need to create a Symlink in the chroot directory or copy your module in the apache chroot

# #Example:
# mkdir -p /var/www/usr/lib /var/www/usr/libexec
# cp /usr/lib/libc.so.57.0 /var/www/usr/lib
# cp /usr/libexec/ld.so /var/www/usr/libexec

After, you need to modify your apache configuration with the path in the chroot:

<YOUR CONFIGURATION>
...
LoadModule proxy_module /usr/lib/libproxy.so
...
<YOUR CONFIGURATION>

And reload the server.

# apachectl stop; apachectl start

http://www.openbsd.org/faq/faq10.html#httpdchroot

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.