Re: [users@httpd] ReverseProxy Exchange 2013

2014-02-17 Thread Thomas Eckert
So i finally got apache2-devel installed... However, when running ./configure for mod_proxy_msrpc, i get an error due to the absence of ap_socache.h. It appears this file is included n apache 2.4. Now, will mod_proxy_msrpc only work in apache 2.4? If not, can i just get the ap_socache.h file

[users@httpd] V2.4.7 and Open SSL 1.o.1f (FIPS) build error

2014-02-17 Thread Tom Browder
I built and installed OpenSSL 1.0.1f in the FIPS mode. I configured httpd-2.4.7 successfully to use mod_ssl: ... --with-ssl=/usr/local/ssl/fips-2.0 and, during the build, it stops here: /usr/local/src/httpd-2.4.7/support/ab.c:509: undefined reference to `FIPS_rand_seed'

[users@httpd] Rewrite problem

2014-02-17 Thread Eggert Ehmke
I took over a domain that was previosly hosted on anther server. The new web portal works fine. We still need to access the old portal, which is accessible via a nonstandard port like http://oldserver:8080. However, the old web portal contains internal absolute links, which now of course point

Re: [users@httpd] Rewrite problem

2014-02-17 Thread Yehuda Katz
Your best bet might be to do your own reverse proxy to the old server which will allow HTTPD to rewrite the links for you. Rewrite rules are not appropriate for this situation. Look at ProxyPass and ProxyPassReverse. - Y On Mon, Feb 17, 2014 at 7:05 PM, Eggert Ehmke