Merge "grafana: ensure snapshots api returns a 403"
This commit is contained in:
commit
c3aeb3a1bb
@ -34,6 +34,9 @@
|
||||
SSLCertificateKeyFile /etc/letsencrypt-certs/{{ inventory_hostname }}/{{ inventory_hostname }}.key
|
||||
SSLCertificateChainFile /etc/letsencrypt-certs/{{ inventory_hostname }}/ca.cer
|
||||
|
||||
RewriteEngine on
|
||||
RewriteRule "^/api/snapshots(.*?)$" "-" [F]
|
||||
|
||||
ProxyPass / http://localhost:3000/ retry=0
|
||||
ProxyPassReverse / http://localhost:3000/
|
||||
|
||||
|
@ -25,3 +25,12 @@ def test_grafana_proxy(host):
|
||||
'--resolve grafana.opendev.org:443:127.0.0.1 '
|
||||
'https://grafana.opendev.org')
|
||||
assert '<title>Grafana</title>' in cmd.stdout
|
||||
|
||||
def test_grafana_api_denial(host):
|
||||
cmd = host.run('curl -s --insecure '
|
||||
'--resolve grafana.opendev.org:443:127.0.0.1 '
|
||||
'-XPOST -H "Accept: application/json" '
|
||||
'-H "Content-Type: application/json" '
|
||||
'-d \'{"dashboard": {}}\' '
|
||||
'https://grafana.opendev.org/api/snapshots')
|
||||
assert '403 Forbidden' in cmd.stdout
|
||||
|
Loading…
x
Reference in New Issue
Block a user