create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
express.use(function(req,res,next){ | |
var host = req.get('host'); | |
if(/^www\./.test(host)){ | |
host = host.substring(4, host.length); | |
res.writeHead(301, {'Location':req.protocol + '://' + host + req.originalUrl, | |
'Expires': new Date().toGMTString()}); | |
res.end(); | |
} else { | |
next(); | |
} |
/* jshint node:true */ | |
'use strict'; | |
var _ = require('lodash'), | |
fs = require('fs'); | |
migrateUsers(); | |
migrateContentTypes(); | |
function migrateUsers() { |
/*jshint node:true*/ | |
module.exports = function (grunt) { | |
'use strict'; | |
var _ = require('lodash'), | |
path = require('path'), | |
sep = path.sep, | |
databases = require('./databases'); | |
grunt.registerTask('data:deleteTemp', function() { |
<head> | |
<base href="/trailing/"> | |
</head> | |
<body> | |
<a href="go">GO GO GO</a> | |
</body> |
<head> | |
<base href="/trailing"> | |
</head> | |
<body> | |
<a href="go">GO GO GO</a> | |
</body> |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
Since ipfw is deprecated and removed on Yosemite and Maveriks, and there are no iptables on Mac you have to use pfctl for port forwarding.
This is important in Vagrant, where usually port 8080 is exposed, but you want to be able to use port 80 on your host browser.
Here is how to setup 80 <-> 8080 port forwarding on your mac (include empty lines at the end of each file... one of them is supposedly picky about it).
After adding the two files below as root, to start (enable) port forwarding do:
sudo pfctl -ef /etc/pf-vagrant.conf
I tested the following script on a vagrant box.
The box was 850MB without the script, and 450 MB with the script.
The script was taken from chef/bento with just one modification.
#!/usr/bin/env bash | |
set -e | |
#set -x # for debugging | |
MYSQL_PW="" | |
TTL=365 | |
while test $# -gt 0; do | |
case "$1" in | |
-h|--help) |
#!/usr/bin/env bash | |
set -e | |
#set -x # for debugging | |
# daily backups with logs crontab -e example: | |
# 0 1 * * * /home/user/path/to/this/file -u my-user -p 'my-pw' -d mydb -t 90 >>/home/user/logs/backup.log 2>&1 | |
MONGO_PW="" | |
TTL=180 |