nginx http check uses GET

This commit is contained in:
mwiegand 2022-09-05 15:02:07 +02:00
parent 7582e8d9cc
commit 78d2499b46

View file

@ -123,7 +123,7 @@ def monitoring(metadata):
'monitoring': { 'monitoring': {
'services': { 'services': {
f'HTTP {hostname}': { f'HTTP {hostname}': {
'vars.command': f"""/usr/bin/curl {quote(hostname + vhost.get('check_path', ''))} -IL --fail""" 'vars.command': f"""/usr/bin/curl -X GET {quote(hostname + vhost.get('check_path', ''))} -IL --fail"""
} }
for hostname, vhost in metadata.get('nginx/vhosts').items() for hostname, vhost in metadata.get('nginx/vhosts').items()
}, },