repo.or.cz
/
nginx_drupal.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
serve robots.txt to search engines
[nginx_drupal.git]
/
conf
/
nginx_status
blob
2e8b983bf4c6d68c9f8b84f9da03ca43292431a7
1
location /nginx_status {
2
auth_basic "Restricted Area";
3
auth_basic_user_file htpasswd;
4
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;
11
}