2020-08-18 13:27:55 +00:00
|
|
|
defaults = {
|
|
|
|
'apt': {
|
|
|
|
'repos': {
|
|
|
|
'nginx': {
|
|
|
|
'items': [
|
2020-08-30 10:06:19 +00:00
|
|
|
'deb http://nginx.org/packages/{os} {os_release} nginx',
|
2020-08-18 13:27:55 +00:00
|
|
|
],
|
2020-03-14 09:56:19 +00:00
|
|
|
},
|
2020-08-18 13:27:55 +00:00
|
|
|
},
|
|
|
|
'packages': {
|
|
|
|
'nginx': {},
|
2020-04-13 07:52:26 +00:00
|
|
|
},
|
2020-08-18 13:27:55 +00:00
|
|
|
},
|
2020-11-13 11:37:26 +00:00
|
|
|
'backups': {
|
|
|
|
'paths': {
|
|
|
|
'/var/www',
|
|
|
|
},
|
|
|
|
},
|
2020-11-10 09:57:04 +00:00
|
|
|
'icinga2_api': {
|
|
|
|
'nginx': {
|
|
|
|
'services': {
|
|
|
|
'NGINX PROCESS': {
|
|
|
|
'command_on_monitored_host': '/usr/local/share/icinga/plugins/check_systemd_unit nginx',
|
|
|
|
},
|
|
|
|
'NGINX STATUS': {
|
|
|
|
'command_on_monitored_host': '/usr/local/share/icinga/plugins/check_nginx_status',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2020-08-18 13:27:55 +00:00
|
|
|
'nginx': {
|
2020-08-30 08:32:29 +00:00
|
|
|
'worker_connections': 768,
|
2020-09-20 12:36:43 +00:00
|
|
|
'use_ssl_for_all_connections': True,
|
2020-08-18 13:27:55 +00:00
|
|
|
},
|
|
|
|
}
|
2020-06-01 08:52:52 +00:00
|
|
|
|
|
|
|
|
2020-08-30 08:32:29 +00:00
|
|
|
@metadata_reactor
|
|
|
|
def worker_processes(metadata):
|
|
|
|
return {
|
|
|
|
'nginx': {
|
|
|
|
'worker_processes': metadata.get('vm/cpu', 2),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-08-18 13:27:55 +00:00
|
|
|
@metadata_reactor
|
2020-06-01 08:52:52 +00:00
|
|
|
def letsencrypt(metadata):
|
|
|
|
if not node.has_bundle('letsencrypt'):
|
2020-08-18 13:27:55 +00:00
|
|
|
raise DoNotRunAgain
|
2020-06-01 08:52:52 +00:00
|
|
|
|
2020-07-19 08:58:54 +00:00
|
|
|
domains = {}
|
2020-06-01 08:52:52 +00:00
|
|
|
|
2020-10-31 09:30:07 +00:00
|
|
|
for vhost, config in metadata.get('nginx/vhosts', {}).items():
|
|
|
|
domain = config.get('domain', vhost)
|
2020-11-11 10:41:06 +00:00
|
|
|
domains[domain] = config.get('domain_aliases', set())
|
2020-06-01 10:29:16 +00:00
|
|
|
|
2020-07-19 08:58:54 +00:00
|
|
|
return {
|
|
|
|
'letsencrypt': {
|
|
|
|
'domains': domains,
|
|
|
|
'reload_after': {
|
|
|
|
'nginx',
|
|
|
|
},
|
|
|
|
},
|
2020-08-18 13:27:55 +00:00
|
|
|
}
|
2020-10-31 09:41:33 +00:00
|
|
|
|
|
|
|
|
|
|
|
@metadata_reactor
|
|
|
|
def index_files(metadata):
|
|
|
|
vhosts = {}
|
|
|
|
|
|
|
|
for vhost, config in metadata.get('nginx/vhosts', {}).items():
|
|
|
|
vhosts[vhost] = {
|
|
|
|
'index': [
|
|
|
|
'index.html',
|
|
|
|
'index.htm',
|
|
|
|
],
|
|
|
|
}
|
|
|
|
|
|
|
|
if config.get('php', False):
|
|
|
|
# If we're using PHP, make sure index.php is tried first
|
|
|
|
vhosts[vhost]['index'].insert(0, 'index.php')
|
|
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
'nginx': {
|
|
|
|
'vhosts': vhosts,
|
|
|
|
},
|
|
|
|
}
|
2020-11-10 09:57:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
@metadata_reactor
|
|
|
|
def monitoring(metadata):
|
|
|
|
services = {}
|
|
|
|
|
|
|
|
for vname, vconfig in metadata.get('nginx/vhosts', {}).items():
|
|
|
|
domain = vconfig.get('domain', vname)
|
|
|
|
|
|
|
|
if 'website_check_path' in vconfig and 'website_check_string' in vconfig:
|
|
|
|
services['NGINX VHOST {} CONTENT'.format(vname)] = {
|
|
|
|
'check_command': 'check_http_wget',
|
|
|
|
'vars.http_wget_contains': vconfig['website_check_string'],
|
|
|
|
'vars.http_wget_url': '{}{}'.format(domain, vconfig['website_check_path']),
|
|
|
|
}
|
|
|
|
|
|
|
|
if vconfig.get('check_ssl', False):
|
|
|
|
services['NGINX VHOST {} CERTIFICATE'.format(vname)] = {
|
|
|
|
'check_command': 'check_vhost_https_cert_at_url',
|
|
|
|
'vars.domain': domain,
|
|
|
|
}
|
|
|
|
|
|
|
|
max_connections = metadata.get('nginx/worker_connections') * metadata.get('nginx/worker_processes')
|
|
|
|
connections_warn = int(max_connections * 0.8)
|
|
|
|
connections_crit = int(max_connections * 0.9)
|
|
|
|
|
|
|
|
services['NGINX STATUS'] = {
|
|
|
|
'command_on_monitored_host': '/usr/local/share/icinga/plugins/check_nginx_status --warn={},-1,-1 --critical={},-1,-1 -H 127.0.0.1:22999'.format(connections_warn, connections_crit),
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
'icinga2_api': {
|
|
|
|
'nginx': {
|
|
|
|
'services': services,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|