Skip to content
Snippets Groups Projects
Commit 7670156b authored by DJ Mountney's avatar DJ Mountney
Browse files

Block requests to the grafana avatar endpoint

parent ae39ff93
No related branches found
No related tags found
No related merge requests found
---
title: Block requests to the grafana avatar endpoint
merge_request:
author:
type: security
......@@ -173,6 +173,11 @@
proxy_pass http://<%= node['monitoring']['grafana']['http_addr'] %>:<%= node['monitoring']['grafana']['http_port'] %>/;
}
location <%= File.join(@path, '-/grafana/avatar') %> {
deny all;
return 404;
}
<% end -%>
# health checks configuration
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment