Skip to content

Instantly share code, notes, and snippets.

base:
'*':
- sensu
- firewalld.default
@LukeFlynn
LukeFlynn / example-hugo.mdeg
Created July 27, 2016 18:32
Example HUGO format.
/* The header is required so hugo knows what to call the post and the date it was published. */
+++
date = "2016-07-27T10:24:32-05:00"
draft = false
title = "Bacon Ipsum"
+++
/* Below is the markdown content */
Bacon ipsum dolor amet frankfurter meatball sausage tri-tip rump shankle flank ham hock salami landjaeger pork belly. Capicola turkey strip steak landjaeger flank chicken, pork loin andouille jowl chuck kevin spare ribs brisket ham hock short ribs. Spare ribs tenderloin boudin andouille pig picanha. Chicken pig biltong, jowl landjaeger shoulder porchetta short loin pork hamburger andouille t-bone turducken bresaola meatball. Boudin tongue ham sirloin turducken shank. Landjaeger sirloin boudin pork loin salami. Meatloaf cow leberkas spare ribs swine.
@LukeFlynn
LukeFlynn / Dockerfile
Last active August 6, 2016 20:51
Alpine Nginx
FROM alpine:3.3
MAINTAINER Luke Flynn <luke@lukehflynn.com>
ENV apk_list="autoconf wget ca-certificates pcre zlib zip tar openssl-dev pcre-dev zlib-dev build-base git patch bash gperf python linux-headers gcc"
RUN apk add --no-cache ${apk_list}
WORKDIR /tmp
# Download Nginx and Nginx modules source
@LukeFlynn
LukeFlynn / Dockerfile
Created June 25, 2016 22:13
Nginx 1.10.1 w/ Pagespeed. Built on RHEL 7
FROM centos:centos7
WORKDIR /tmp
# Install prerequisites for Nginx compile
RUN yum install -y \
wget \
tar \
openssl-devel \
@LukeFlynn
LukeFlynn / employees_db_slim.sql
Last active September 21, 2015 07:13
Slim Employees Example DB.
-- MySQL dump 10.13 Distrib 5.6.21-69.0, for debian-linux-gnu (x86_64)
--
-- Host: localhost Database: employees
-- ------------------------------------------------------
-- Server version 5.6.21-69.0
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;