Image of N-tier Architecture i need to achive
I would like to know what are the server configuration for the web server and app server if both of them located in two different Machine?
Client Request is to Changing the current server architecture from
client <---> (Web Server/App Server) <---> Database
TO
client <---> Web Server(IIS) <---> App Server(.net) <---> Database
In this scenario, the Web server (which contains the presentation layer logic) is physically separated from the application server that implements the business logic.
Why i need to achieve this because of following reasons:
Security requirements dictate that business logic cannot be deployed to the perimeter network.
Application code that makes heavy use of resources on the server, and want to offload that functionality to another server.
Any possible links or resources for guidance would be very helpful.
I have searched the web for two days regarding this i have gone through all the theory part of it but none i found regarding to the server configuration.