Skip to content

Instantly share code, notes, and snippets.

@BrunIF
BrunIF / ecr-add-tag.sh
Created April 10, 2020 07:06 — forked from sportebois/ecr-add-tag.sh
Add tag to a docker image in ECR via AWS CLI
#!/usr/bin/env bash
function ecr-add-tag() {
if (( $# < 3 )); then
echo "Wrong number of arguments. Usage: ecr-add-tag ECR_REPO_NAME TAG_TO_FIND TAG_TO_ADD [AWS_PROFILE]"
return
fi
local repo_name=$1
local existing_tag=$2
local new_tag=$3
@BrunIF
BrunIF / php-pools.md
Created April 2, 2020 06:59 — forked from holmberd/php-pools.md
Adjusting child processes for PHP-FPM (Nginx)

Adjusting child processes for PHP-FPM (Nginx)

When setting these options consider the following:

  • How long is your average request?
  • What is the maximum number of simultaneous visitors the site(s) get?
  • How much memory on average does each child process consume?

Determine if the max_children limit has been reached.

  • sudo grep max_children /var/log/php?.?-fpm.log.1 /var/log/php?.?-fpm.log
@BrunIF
BrunIF / example.conf
Created February 26, 2020 07:30
Generate SSL certificate for many sites (ex. ssls.com)
[req]
distinguished_name=req_distinguished_name
req_extensions = v3_req
prompt = no
[ req_distinguished_name ]
countryName = US
stateOrProvinceName = Texas
localityName = Austin
organizationName = My Company LLC
@BrunIF
BrunIF / docker-compose-cors.yml
Last active February 12, 2020 08:14 — forked from iki/docker-compose.yml
Docker-compose nginx CORS proxy
version: '3.7'
services:
whoami:
image: jwilder/whoami
ports:
- 127.0.0.1:7000:8000
cors:
@BrunIF
BrunIF / create-new-master.sh
Created January 21, 2020 11:01
Quick upgrade AWS RDS DB Instance
#!/bin/bash
# Needed software: aws, jq
export AWS_ACCESS_KEY_ID=
export AWS_SECRET_ACCESS_KEY=
export AWS_DEFAULT_REGION=
DB_MASTER=rds-db
NEW_MASTER=new-rds-db
@BrunIF
BrunIF / aws-ui-shorter-shortcuts.user.js
Last active January 14, 2020 23:01 — forked from jamesinc/aws-ui-shorter-shortcuts.user.js
A Tampermonkey script to replace various AWS console service names with acronyms, so they take up less space in the shortcuts bar.
// ==UserScript==
// @name AWS UI scrubber
// @namespace https://github.com/jamesinc
// @version 1.5
// @description Make AWS Console shortcuts take up less space
// @author James Ducker
// @match https://*.console.aws.amazon.com/*
// @match https://phd.aws.amazon.com/*
// @grant none
// @run-at document-end
@BrunIF
BrunIF / .bash_aliases
Created November 5, 2019 13:40 — forked from vratiu/.bash_aliases
Git shell coloring
# Customize BASH PS1 prompt to show current GIT repository and branch.
# by Mike Stewart - http://MediaDoneRight.com
# SETUP CONSTANTS
# Bunch-o-predefined colors. Makes reading code easier than escape sequences.
# I don't remember where I found this. o_O
# Reset
Color_Off="\[\033[0m\]" # Text Reset
@BrunIF
BrunIF / network-restart.sh
Created October 29, 2019 13:19 — forked from tachang/network-restart.sh
Cleanly restart the default libvirt network
#!/bin/bash
#
# Yury V. Zaytsev <[email protected]> (C) 2011
#
# This work is herewith placed in public domain.
#
# Use this script to cleanly restart the default libvirt network after its
# definition have been changed (e.g. added new static MAC+IP mappings) in order
# for the changes to take effect. Restarting the network alone, however, causes
# the guests to lose connectivity with the host until their network interfaces
@BrunIF
BrunIF / create_rds_snapshot.sh
Created September 30, 2019 09:14
Create AWS RDS Sanpshot with waiting
#!/bin/bash
# Needed sftware: awscli, jq
DATE=$(date +%Y%m%d-%H%M%S)
DB_IDENTIFIER="mysql"
SS=$(aws rds create-db-snapshot --db-snapshot-identifier ${DB_IDENTIFIER}-${DATE} --db-instance-identifier ${DB_IDENTIFIER} | jq -r .DBSnapshot.DBSnapshotArn)
DB_STATUS=""
while [[ "$DB_STATUS" != "available" ]]

Keybase proof

I hereby claim:

  • I am brunif on github.
  • I am brun (https://keybase.io/brun) on keybase.
  • I have a public key ASBaVVRhll7E5TUl8ZrzAbGXz_EBvTYIgMKN_989n7JDHQo

To claim this, I am signing this object: