start new:
tmux
start new with session name:
tmux new -s myname
| #!/usr/bin/env bash | |
| mkdir vim | |
| curl https://s3.amazonaws.com/heroku-vim/vim-7.3.tar.gz --location --silent | tar xz -C vim | |
| export PATH=$PATH:/app/vim/bin |
| # VCL configuration file for Varnish | |
| # Define which IP addresses or hosts have access to files that are | |
| # blocked from the public internet | |
| acl internal { | |
| "localhost"; | |
| } | |
| # Define origin servers | |
| backend web { .host = "1.2.3.4"; .port = "80"; } |