TLS TimeOut

StartServers 5 # apache 啟動執行時的 process 數,也就是可同時處理的 request 數
MinSpareServers 5
MaxSpareServers 10
ServerLimit 150 # ServerLimit 的設定值 應「大於等於」下面的 MaxClients
MaxClients 150 # 官方的定義就是「最大可同時處理的 connection 數」
MaxRequestsPerChild 10000 # 一個「Apache sever」在處理該數目後,會自動中止並重啟,以防 memory leakage

httpd.conf

tartServers             5
MinSpareServers          5
MaxSpareServers         10
MaxRequestWorkers      250
MaxConnectionsPerChild   0

ServerLimit            150
MaxClients             150
MaxRequestsPerChild  10000 

Categorized in: