I need to configure proxies / rewrite to lighttpd!
I have server1, which serves through http 2 different web application paths:
* http:
* http:
Also, I have a lighttpd server in front of server1
I want to configure rewriting and / or proxying on lighttpd so that each of the two paths serves as the root path in different domains:
* requests to http:
* requests to http:
important:
- server2.com and server3.com can access server1 only through http
- redirects are not an option, server2.com and server3.com users should not know that the actual web applications are served from different server1 paths.
Is it possible?
source
share