Hi,
you could use host based access control giving full access to the server applications.examle.com: http://httpd.apache.org/docs/2.2/howto/access.html The problem is that the request to secure.example.com has to come from applications.example.com and not from the client browser. You could use mod_proxy directives for that. For example on the application webserver: ProxyPass /secure http://secure.example.com/ ReverseProxyPass /secure http://secure.example.com/ With that every browser accessing http://application.example.com/secure will actually get the content of http://secure.example.com. But that only works if you did set host based access rules as in the above link. bye David Am 11.10.2013 16:58, schrieb Philippe Marcoussis:
|