Category Servers

Vagrant bootstrap.sh for full LAMP stack with Solr 4

Just for reference, here is the bootstrap.sh file I use to bring up my vagrant dev box with Solr 4 and Jetty ready to go. #!/usr/bin/env bash apt-get install python-software-properties add-apt-repository ppa:ondrej/php5 apt-get update apt-get install php5 apt-get install php5-mysql…

Using Git to deploy live/dev sites

Deployment to the live server consists of creating a bare repo in a location on the server accessible via SSH, then pushing to that. A hook script is setup inside this repo to pull any changes out into the working directory for that particular site.