Enable Nginx Status Page

Nginx status is provided by http_stub_status module. To verify if your Nginx is installed with this module, run nginx -V 2>&1 | grep -o with-http_stub_status_module If the result shows “with-http_stub_status_module”, you have the module installed. To enbale stats edit nginx configuration file for your web site, add following code location /nginx_status {     stub_status; … Read more