start new:
tmux
start new with session name:
tmux new -s myname
# Varnish 4.0 file for our Craft CMS projects | |
# Based on https://github.com/mattiasgeniar/varnish-4.0-configuration-templates/blob/master/default.vcl | |
# | |
# This is still work in progress, comments appreciated. | |
vcl 4.0; | |
# Default backend definition. Set this to point to your content server. | |
backend default { | |
.host = "127.0.0.1"; |
# Varnish 4.0 file for our Craft CMS projects | |
# Based on https://github.com/mattiasgeniar/varnish-4.0-configuration-templates/blob/master/default.vcl | |
# | |
# This is still work in progress, comments appreciated. | |
vcl 4.0; | |
import std; | |
import directors; |
'use strict'; | |
var env = require('../env'), | |
gulp = require('gulp'), | |
streamify = require('gulp-streamify'), | |
imagemin = require('gulp-imagemin'), | |
browserify = require('browserify'), | |
watchify = require('watchify'), | |
reactify = require('reactify'), | |
envify = require('envify'), |
var gm = require('gm'); | |
var canvasWidth = 248; | |
var canvasHeight = 389; | |
gm(__dirname + '/original.jpg').size(function(error, size) { | |
if (error) { | |
console.error(error); |