Skip to content

Instantly share code, notes, and snippets.

View fredead's full-sized avatar
🍌
banana

Simon Loader fredead

🍌
banana
View GitHub Profile
@fredead
fredead / Redis notes
Last active June 9, 2023 10:33
Automating creation of a redis cluster
Fireup all our nodes.
I could find information about this only which was odd. The tutorial is nice if you are setting up some static site ala the early 00's.
So this is some notes on creating a cluster by hang which will feed into the creation of a puppet / ansible / chef / shell / slat script
to do the main part of creating the cluster.
I note also many clients do not support redis in cluster mode WTF?
Open up this in a browser
https://redis.io/commands/cluster-slots
@fredead
fredead / solcsend.sh
Last active September 9, 2016 08:22
Ethereum compile with solc and deploy using geth
#!/bin/sh -e
TEMPDIR=`mktemp -d`
echo Compilecode
solc --gas --bin -o ${TEMPDIR} $1
FILENAME=${TEMPDIR}/$1
FILENAME=`echo ${TEMPDIR}/$1 | sed -e 's/.sol$/.bin/'`
DATA=`cat $FILENAME`
@fredead
fredead / ssl-proxy-site.conf
Created July 20, 2016 14:02
Apache port 80 redirect to port 443
<VirtualHost *:80>
ServerName www.loaders.net
ServerAdmin [email protected]
Redirect permanent / https://www.loaders.net
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
@fredead
fredead / nginx-redirect.conf
Last active January 13, 2017 12:16
Nginx port 80 to port 443 redirect with added ssl hardening
server {
listen 80;
server_name www.loaders.net;
rewrite ^ https://$server_name$request_uri? permanent;
#listen 80 default_server;
#return 301 https://$host$request_uri;
}
@fredead
fredead / Lambda stack CFN utils
Last active July 15, 2016 07:54
CFN template to create SNS subscription and looking up output of other stacks lambda
{
"Description": "lambda helper functions for stacks",
"Outputs": {
"LookupStackARN": {
"Description": "Arn for lookup stack arn",
"Value": {
"Fn::GetAtt": [
"LookupStackOutputs",
"Arn"
]
@fredead
fredead / s3put-encrypt.sh
Last active June 2, 2016 14:41
KMS encrypting a file on AWS
#!/bin/sh
CMD=`basename $0`
TMPFILE=`mktemp /tmp/${CMD}.XXXXXX` || exit 1
KEY_ARN="arn:aws:kms:eu-west-1:28282828282:key/2828282-82822-28283-28238-28383393"
function usage {
echo "${CMD} [-k KMS key arn] <from> <to>" >&2
echo " Example:"
echo " ${CMD} env.staging s3://bucket/staging/env.staging" >&2
@fredead
fredead / give-me-root-docker.sh
Last active February 15, 2016 14:11
Bypass some security on a badly setup docker daemon
# Add your self to the local sudo group when docker daemon is running as root
docker run -v /:/mnt -i -t centos chroot /mnt usermod -a -G sudo ${USER}
@fredead
fredead / Renew-app-lease-check-pid.sh
Last active November 20, 2015 12:43
Timer based restart script while checking a process actually started
#!/bin/bash -e
# In general using this is a hack round another problem
#Sometimes it can be a practical answer to be productive rather than going in circles
while [ true ]; do
RENEW_TIME=60000
CHECK_TIME=60
# get my Lease for the
LEASE=`echo curl http://lease`
@fredead
fredead / Selinux cheat sheet
Last active April 23, 2016 14:27
Selinux cheat sheet
Selinux can be difficult when you just want it to work and many people just switch it off
Here is something simple command lines I use to just set it up, its best to go away for a week and learn it all properly but this is good when you just want to get it done.
yum install policycoreutils-python # Centos package
NOTE: all changes take effect and remain even after a reboot
Allow something to execute / write to a file / area
# find type name 1st ( this may prove more difficult in which case look at agent logs)
semanage fcontext -l | grep progname
@fredead
fredead / haproxy.conf
Last active June 28, 2017 10:51
haproxy for docker registry
frontend https
bind :80
bind 0.0.0.0:443 ssl crt /etc/haproxy/mydomain.com.pem
reqadd X-Forwarded-Proto:\ https
redirect scheme https if !{ ssl_fc }
acl docker_registry_domain hdr(host) -i docker-register.mydomain.com
# This is a hack for docker not always sending basic auth data
acl docker_token hdr(Authorization:) -i Token