A straightforward version from Vincent Driessen article.
Create a copy branch from develop.
$ git checkout -b feature-1 developMerge with develop after code your feature.
| (function () { | |
| try { | |
| if (!google.doodle) google.doodle = {}; | |
| var a = 200, | |
| g = -200, | |
| j = -200, | |
| k, l, m, n = 0, | |
| o = 0, | |
| p = 0, | |
| q = 35, |
| #!/bin/bash | |
| JAILS=`fail2ban-client status | grep "Jail list" | sed -E 's/^[^:]+:[ \t]+//' | sed 's/,//g'` | |
| for JAIL in $JAILS | |
| do | |
| fail2ban-client status $JAIL | |
| done |
| #XLarge DBInstanceClassMemory = 15892177440 = 14.8GB | |
| #/32 = 496630545 = 473MB | |
| #/64 = 248315272 = 236MB | |
| #/128 = 124157636 = 118MB | |
| #/256 = 62078818 = 59MB | |
| #/512 = 31039409 = 29MB | |
| #/12582880 = 1263 #default same divisor as max_connections = 4041.6MB = 4237924762 | |
| #/25165760 = 623 # half of max_connections = 1993.6MB | |
| #/50331520 = 315 # quarter of max_connections = 1008MB = 1056964608 | |
| #*(3/4) #default innodb pool size = 11922309120 |
| # to generate your dhparam.pem file, run in the terminal | |
| openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
A straightforward version from Vincent Driessen article.
Create a copy branch from develop.
$ git checkout -b feature-1 developMerge with develop after code your feature.
| # Author = Nikhil Venkat Sonti | |
| # email = nikhilsv92@gmail.com | |
| # github ID = shadowfax92 | |
| import sys | |
| from xml.dom.minidom import _get_StringIO | |
| from lxml import html | |
| import requests | |
| import os | |
| import re | |
| import time |
| # This is an annotated subset of the Nginx configuration from our Magento production platform @ www.hypernode.com | |
| # See https://www.byte.nl/blog/magento-cacheleak-issue | |
| # !!!! If you are a Hypernode customer, do not use this config as it will result in duplicate statements. !!!!! | |
| user app; | |
| worker_processes 4; | |
| pid /var/run/nginx.pid; | |
| events { |
| # === Optimized my.cnf configuration for MySQL/MariaDB (on Ubuntu, CentOS, Almalinux etc. servers) === | |
| # | |
| # by Fotis Evangelou, developer of Engintron (engintron.com) | |
| # | |
| # ~ Updated September 2024 ~ | |
| # | |
| # | |
| # The settings provided below are a starting point for a 8-16 GB RAM server with 4-8 CPU cores. | |
| # If you have different resources available you should adjust accordingly to save CPU, RAM & disk I/O usage. | |
| # |
cd ~/Downloads
wget http://repo.zabbix.com/zabbix/3.2/ubuntu/pool/main/z/zabbix-release/zabbix-release_3.2-1+xenial_all.deb
dpkg -i zabbix-release_3.2-1+xenial_all.deb
apt-get update
should add /etc/apt/sources.list.d/zabbix.list
| # Print status for all fail2ban jails. | |
| function f2bstall() { | |
| JAILS=($(fail2ban-client status | grep "Jail list" | sed -E 's/^[^:]+:[ \t]+//' | sed 's/,//g')) | |
| for JAIL in ${JAILS[@]} | |
| do | |
| echo "--------------- 👀 JAIL STATUS: $JAIL ... ---------------" | |
| fail2ban-client status $JAIL | |
| echo "--------------- ... ---------------" | |
| done | |
| } |