This file contains 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
# wp-secure.conf | |
# | |
# | |
# This file includes common security considerations for wordpress using nginx. | |
# | |
# The goal is to block actions which are usually dangerous to wordpress. | |
# Additionally, we block direct access to PHP files and folders which should not | |
# be accessed directly from a browser. | |
# | |
# Also have included exceptions for plugins that are known to require this access. |
This file contains 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/sh | |
# Mail Notification Script for Icinga2 Hosts | |
# Uses swaks for mail delivery: http://www.jetmore.org/john/code/swaks/ | |
# Date: 2017-01-19 | |
# Author: Christoph Wiechert <[email protected]> | |
VERSION=1.0.0 | |
usage() { | |
echo "Mail Notifications for Icinga2 Host Alerts" |