Reputation: 59
I want to check the server load before push the files to live. Is any way to check server have capacity to handled the concurrency users. Also we have checked the ab in terminal side but need to check without files.
Upvotes: 1
Views: 494
Reputation: 181280
You can use the /server-status
handler (mod_status) to check that.
Configuring it is fairly easy and straighforward:
<Location "/server-status">
SetHandler server-status
Require host example.com
</Location>
Upvotes: 1