Skip to content

Instantly share code, notes, and snippets.

@MiteshShah
Created September 2, 2016 07:22
Show Gist options
  • Save MiteshShah/38591a384c426a63ec3b002ac0208801 to your computer and use it in GitHub Desktop.
Save MiteshShah/38591a384c426a63ec3b002ac0208801 to your computer and use it in GitHub Desktop.
server {
listen 127.0.0.1:80;
location /nginx_status {
stub_status on;
access_log off;
allow all;
}
location ~ ^/(status|ping)$ {
access_log off;
allow 127.0.0.1;
deny all;
include fastcgi_params;
fastcgi_pass 127.0.0.1:9000;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment