So I set up apache2 to serve web service. The only consumer of it (and the whole server) will be .net web application. Firstly, is it correct to assume that this way apache will only see one client? If it is correct then how do I optimize it in this light? Specifically, would it be correct to do something like:
MaxKeepAliveRequests 0 #instead of MaxKeepAliveRequests 100 KeepAliveTimeout 300 #instead of KeepAliveTimeout 15
apachectl -t -D DUMP_MODULESlistsmpm_prefork_module (static)and apache2.conf has<IfModule mpm_prefork_module> StartServers 1 MinSpareServers 1 MaxSpareServers 5 MaxClients 10 MaxRequestsPerChild 0 </IfModule>