Markdown is intended to be as easy-to-read and easy-to-write as is feasible.
This file contains 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
# ------------------------------------------------------------------------ | |
# REMOVE WWW PREFIX ------------------------------------------------------ | |
# ------------------------------------------------------------------------ | |
server { | |
server_name *.[sitename]; | |
# remove all sub domains and www | |
rewrite ^/(.*)$ http://[sitename]/$1 permanent; | |
} |
This file contains 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
# ------------------------------------------------------------------------ | |
# REMOVE WWW PREFIX ------------------------------------------------------ | |
# ------------------------------------------------------------------------ | |
server { | |
server_name *.[sitename]; | |
# remove all sub domains and www | |
rewrite ^/(.*)$ http://[sitename]/$1 permanent; | |
} |
This file contains 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
#!/usr/bin/env bash | |
# Pre install script to install the a specific version of puppet | |
# If no parameter is supplied, the lastest version will be installed | |
# Thanks to: https://gist.github.com/dol/5776169 | |
# Corresponds to Vagrantfile line | |
VERSION="" | |
if [ -n "$1" ] | |
then | |
VERSION="$1" | |
fi |
This file contains 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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | |
VAGRANTFILE_API_VERSION = "2" | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
config.vm.box = "jeter" | |
config.vm.box_url = "~/Downloads/debian-wheezy64.box" |
This file contains 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
################################## | |
# WORDPRESS NGINX CONFIGURATIONS | |
################################## | |
# /etc/nginx/wordpress.conf | |
# | |
# Contains a common configuration for use by nginx on a WordPress | |
# installation. This file should be included in any WordPress site | |
# nginx virtual host config located in sites-available with the following line: | |
# | |
# include /etc/nginx/wordpress.config; |
This file contains 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
# See this setup: http://polihronov.wordpress.com/ | |
# | |
# | |
user www-data; | |
worker_processes 1; | |
pid /var/run/nginx.pid; | |
events { | |
worker_connections 1024; | |
# multi_accept on; |
This file contains 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
<?php | |
/* | |
This is a sample local-config.php file | |
In it, you *must* include the four main database defines | |
You may include other settings here that you only want enabled on your local development checkouts | |
This file should be ignored in your .gitignore file | |
*/ |
This file contains 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
# Virtual Host File | |
# Common wordpress configurations included in /etc/nginx/wordpress.conf | |
# All virtual hosts including this one are symlinked to /etc/nginx/sites-enabled | |
# Make sure you replace "mysite" with your domain name | |
server { | |
listen 80 default_server; | |
listen 443 ssl; | |
server_name mysite.com www.mysite.com *.mysite.com; |
This file contains 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
# ------------------------------------------------------------------------------ | |
# SETUP CRON JOBS 4 Backup + Server Love --------------------------------------- | |
# ------------------------------------------------------------------------------ | |
# Start by opening the default logger | |
nano /etc/rsyslog.d/50-default.conf | |
# Start tracking cron jobs | |
Uncomment: cron.* [remove the "#" around line 10] | |
Uncomment: daemon.* [remove the "#" around line 11] |
OlderNewer