0

I've a problem during the installation of an Exhange Server. I host it on a windows server and wanted to configure access with a domain.

So I've used Apache2 on Debian and configured ReverseProxy.

ProxyPass / https://10.0.120.50:443/ nocanon
ProxyPassReverse / https://10.0.120.50:443/

This lines give me access to the Exchange Server, but it redirects me to the local address of the windows server (domain.net -> 10.0.120.50). I've already tried to fix it with the RewriteEngine, but that didn't help. Can someone help me to fix this problem?

Greetings, Philipp

Eugene Astafiev
  • 47,483
  • 3
  • 24
  • 45
Philipp
  • 21
  • 2

1 Answers1

0

I've solved the problem.

I need to proxy all whole paths of the exchange server. Example:

ProxyPass /owa https://10.0.120.50:443/owa
ProxyPassReverse /owa https://10.0.120.50:443/owa
ProxyPass /ecp https://10.0.120.50:443/ecp
ProxyPassReverse /ecp https://10.0.120.50:443/ecp

Now it is fully functional.

Philipp
  • 21
  • 2