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
# SSL server config | |
server { | |
listen 443 ssl; | |
server_name secure.example.com; | |
ssl_certificate /etc/letsencrypt/live/secure.example.com/fullchain.pem; | |
ssl_certificate_key /etc/letsencrypt/live/secure.example.com/privkey.pem; | |
ssl_protocols TLSv1 TLSv1.1 TLSv1.2; |
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
# Install nginx with brew | |
brew install nginx | |
# Install PIP | |
wget https://bootstrap.pypa.io/get-pip.py | |
python get-pip.py | |
# Get letsencrypt | |
git clone https://github.com/letsencrypt/letsencrypt | |
cd letsencrypt |
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
# Add capybara-webkit to Gemfile in :test group | |
# https://github.com/thoughtbot/capybara-webkit#usage | |
bundle install | |
# If bundle install fails, manual install | |
sudo apt-get update | |
sudo apt-get upgrade | |
# Install liborc (version required by Qt) | |
# http://forums.debian.net/viewtopic.php?f=6&t=117769 |
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
. |
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
function parse_git_dirty { | |
[[ $(git status 2> /dev/null | tail -n1) != "nothing to commit, working tree clean" ]] && echo "*" | |
} | |
function parse_git_stash { | |
[[ $(git stash list 2> /dev/null | tail -n1) != "" ]] && echo "^" | |
} | |
function parse_git_branch { | |
git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e "s/* \(.*\)/\1$(parse_git_dirty)$(parse_git_stash)/" | |
} | |
PS1='\[\e[0;33m\]${HOSTNAME}\[\e[m\] \W \[\e[0;36m\]$(parse_git_branch)\[\e[m\] $ ' |
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
Moved to: https://github.com/iwazaru/cheatsheets/blob/master/git.md |
NewerOlder