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
server { | |
listen 80; | |
listen [::]:80; | |
server_name xy.com; | |
return 301 https://$server_name$request_uri; | |
} | |
server { | |
listen 443 ssl; | |
listen [::]:443 ssl; |
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
{% if not is_feed() %} | |
{# display web player for episode #} | |
{{ episode.player }} | |
{# display contributors if module is active #} | |
{% if shortcode_exists("podlove-episode-contributor-list") %} | |
<h3>Am Mikrofon:</h3> | |
{# see http://docs.podlove.org/podlove-publisher/reference/shortcodes.html#contributors for parameters #} | |
[podlove-episode-contributor-list] |
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
user www-data; | |
worker_processes auto; | |
error_log /var/log/nginx/error.log notice; | |
pid /var/run/nginx.pid; | |
events { | |
worker_connections 1024; | |
use epoll; |
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
# This file shows only my changes - please insert / adapt them at the right place at your file! | |
# SSL | |
tls_certificate_path: "/etc/matrix-synapse/fullchain.pem" | |
tls_private_key_path: "/etc/matrix-synapse/privkey.pem" | |
tls_dh_params_path: "/etc/matrix-synapse/dhparam.pem" | |
no_tls: false | |
# Chat | |
web_client: false |
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
stages: | |
- deploy | |
deploy-master: | |
stage: deploy | |
environment: production | |
script: | |
- ssh [email protected] " | |
cd /var/www/wordpress/wp-content/themes/theme-name && | |
git pull |
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
server { | |
listen 443 ssl http2; | |
listen [::]:443 ssl http2; | |
server_name xy.com; | |
access_log /var/log/nginx/access.log; | |
error_log /var/log/nginx/error.log; | |
ssl_certificate /etc/letsencrypt/live/xy.com/fullchain.pem; | |
ssl_certificate_key /etc/letsencrypt/live/xy.com/privkey.pem; | |
add_header Strict-Transport-Security "max-age=63072000; includeSubdomains; preload"; | |
root /var/kunden/lime/httpdocs; |
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
[mysqld] | |
connect_timeout = 15 | |
wait_timeout = 120 | |
max_allowed_packet = 16M | |
sort_buffer_size = 16M | |
bulk_insert_buffer_size = 16M | |
tmp_table_size = 32M | |
max_heap_table_size = 32M | |
thread_handling = pool-of-threads | |
#thread_pool_size = 128 |
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
[username] | |
listen = /var/run/php/php7.2-fpm-username.sock | |
listen.allowed_clients = 127.0.0.1 | |
user = username | |
group = username | |
listen.mode = 0660 | |
listen.owner = username | |
listen.group = www-data |
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/bash | |
# Gib die Namen der OpenDKIM Config Dateien an | |
Key_Table="KeyTable" | |
Signing_Table="SigningTable" | |
Trusted_Hosts="TrustedHosts" | |
# Gib deine Mail Adresse an | |
MAIL="[email protected]" |
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
object CheckCommand "centreon-snmp-load" { | |
import "plugin-check-command" | |
command = [ "/home/icinga2/centreon-plugins/centreon_plugins.pl"] | |
arguments = { | |
"--plugin" = "os::linux::snmp::plugin" | |
"--mode" = "load" | |
"--hostname" = "$address$" | |
"--snmp-version" = "2c" | |
"--snmp-community" = "$snmp_community$" |
NewerOlder