4

I am having a application build using pimcore (ZendFramework) which is hosted on a Linux EC2 (Apache) instance and one more application which is hosted on Windows IIS.

Now I want both of these applications to run in the following manner:

I can't use subdomains for this. I was trying to use URL Rewrite (ARR) of IIS. But ZendFramework is giving the following error:

Zend_Controller_Router_Exception No route, document, custom route or redirect is matching the request
Stephan Weinhold
  • 1,623
  • 1
  • 28
  • 37

1 Answers1

1

You'll need a third web server to act as a reverse proxy. This could be an Apache or a Nginx instance for example.

The reverse proxy will serve your main domain on port 80 and decide what address to contact in order to provide the appropriate content.

Phellipe Ribeiro
  • 491
  • 3
  • 13