serve robots.txt to search engines
[nginx_drupal.git] / conf / nginx_status
blob2e8b983bf4c6d68c9f8b84f9da03ca43292431a7
1 location /nginx_status {
2   auth_basic "Restricted Area";
3   auth_basic_user_file htpasswd;
5   stub_status on;
6   access_log   off;
7   allow 127.0.0.1;
8   # Add IP adresses you want to allow
9   # allow n.n.n.n;
10   deny all;