This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
base: | |
'*': | |
- sensu | |
- firewalld.default |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM alpine:3.3 | |
MAINTAINER Luke Flynn <[email protected]> | |
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM centos:centos7 | |
WORKDIR /tmp | |
# Install prerequisites for Nginx compile | |
RUN yum install -y \ | |
wget \ | |
tar \ | |
openssl-devel \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 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 */; |