Headings from h1
through h6
are constructed with a #
for each level:
# h1 Heading
## h2 Heading
### h3 Heading
# 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 = "uec-images.ubuntu.com/trusty64" | |
config.vm.network "forwarded_port", guest: 80, host: 8080, host_ip: "127.0.0.1" | |
config.vm.provider "virtualbox" do |vb| |
sudo chgrp -R www-data /var/www/sitename.com | |
sudo chmod -R g+w /var/www/sitename.com | |
find /var/www/sitename.com -type d -exec chmod g+s {} \; |
# Recursively add a .gitignore file to all directories | |
# in the working directory which are empty and don't | |
# start with a dot. Helpful for tracking empty dirs | |
# in a git repository. | |
find . -type d -regex ``./[^.].*'' -empty -exec touch {}"/.gitignore" \; |
# Set default behaviour, in case users don't have core.autocrlf set. | |
* text | |
# Explicitly declare text files we want to always be normalized and converted | |
# to native line endings on checkout. | |
*.html text | |
*.css text | |
*.js text | |
# Declare files that will always have LF line endings on checkout. |