Skip to content

Instantly share code, notes, and snippets.

View thisismitch's full-sized avatar

Mitchell Anicas thisismitch

View GitHub Profile
@thisismitch
thisismitch / keybase.md
Created June 2, 2016 15:52
Keybase proof

Keybase proof

I hereby claim:

  • I am thisismitch on github.
  • I am thisismitch (https://keybase.io/thisismitch) on keybase.
  • I have a public key ASC7O1Zoquc9lBjggragpOmE17cD3sHw00DU5salLEZsQQo

To claim this, I am signing this object:

@thisismitch
thisismitch / nginx.conf
Created October 6, 2014 20:48
Nginx server block for Kibana
#
# Nginx proxy for Elasticsearch + Kibana
#
# In this setup, we are password protecting the saving of dashboards. You may
# wish to extend the password protection to all paths.
#
# Even though these paths are being called as the result of an ajax request, the
# browser will prompt for a username/password on the first request
#
# If you use this, you'll want to point config.js at http://FQDN:80/ instead of
@thisismitch
thisismitch / hello.js
Last active March 3, 2016 19:05
Node.js hello world
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(8080, 'APP_PRIVATE_IP_ADDRESS');
console.log('Server running at http://APP_PRIVATE_IP_ADDRESS:8080/');
@thisismitch
thisismitch / openssl.cnf
Created June 24, 2015 17:27
Example openssl.cnf for IP SAN certificate
#
# OpenSSL example configuration file.
# This is mostly being used for generation of certificate requests.
#
# This definition stops the following lines choking if HOME isn't
# defined.
HOME = .
RANDFILE = $ENV::HOME/.rnd
@thisismitch
thisismitch / user-data
Last active August 29, 2015 14:07
Deis user-data
#cloud-config
---
coreos:
etcd:
# generate a new token for each unique cluster from https://discovery.etcd.io/new
# uncomment the following line and replace it with your discovery URL
discovery: https://discovery.etcd.io/<DISCOVERY_TOKEN>
addr: $private_ipv4:4001
peer-addr: $private_ipv4:7001
# give etcd more time if it's under heavy load - prevent leader election thrashing
@thisismitch
thisismitch / gist:4cf44e866e5fdfccef3b
Created July 31, 2014 16:46
terraform build error
Mitchells-MBP:terraform userguy$ make updatedeps
rm -rf vendor/libucl
mkdir -p vendor/libucl
git clone https://github.com/hashicorp/libucl.git vendor/libucl
Cloning into 'vendor/libucl'...
remote: Counting objects: 1950, done.
remote: Compressing objects: 100% (563/563), done.
remote: Total 1950 (delta 1276), reused 1950 (delta 1276)
Receiving objects: 100% (1950/1950), 2.32 MiB | 429.00 KiB/s, done.
Resolving deltas: 100% (1276/1276), done.