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
# First install prometheus-operator: | |
# | |
# helm install coreos/prometheus-operator --name prometheus-operator | |
# | |
apiVersion: monitoring.coreos.com/v1 | |
kind: ServiceMonitor | |
metadata: | |
name: node-exporter | |
# Namespace of prometheus operator |
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
<?php | |
use In2code\Email2powermail\Domain\Factory\EmailLinkFactory; | |
use In2code\Email2powermail\Domain\Model\Email; | |
use In2code\Email2powermail\Domain\Model\EmailLink; | |
use In2code\Email2powermail\Domain\Repository\EmailRepository; | |
use In2code\Email2powermail\Utility\ConfigurationUtility; | |
use In2code\Email2powermail\Utility\ObjectUtility; | |
use TYPO3\CMS\Extbase\Persistence\Generic\PersistenceManager; |
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
# Sitemap for news | |
[globalVar = TSFE:type = 1481221329] | |
config { | |
disableAllHeaderCode = 1 | |
admPanel = 0 | |
metaCharset = utf-8 | |
additionalHeaders = Content-Type:text/xml;charset=utf-8 | |
disablePrefixComment = 1 | |
} |
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
#!/bin/bash | |
SSL_CERTIFICATE_WARN_DAYS=7 | |
source /etc/(apache2|httpd)/envvars | |
for i in `apache2 -S 2>/dev/null | grep "port 443" | awk '{print $4}' | sort | uniq` | |
do | |
/usr/lib/nagios/plugins/check_http -H $i -C $SSL_CERTIFICATE_WARN_DAYS | xargs echo "$i" | grep -v 'OK -' | |
done |
NewerOlder