This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Version 2022/08/05 | |
server { | |
listen 443 ssl; | |
listen [::]:443 ssl; | |
server_name notifiarr.*; | |
include /config/nginx/ssl.conf; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# This script will connect to a remove monit instance and report | |
# CRITICAL if any of the services are currently 'unmonitored'. | |
import pynagios | |
import urllib2 | |
import base64 | |
from xml.dom.minidom import parseString | |
from pynagios import Plugin, make_option, Response |