Skip to content

Instantly share code, notes, and snippets.

@damaya
Created April 3, 2014 04:22
Show Gist options
  • Select an option

  • Save damaya/9948239 to your computer and use it in GitHub Desktop.

Select an option

Save damaya/9948239 to your computer and use it in GitHub Desktop.
Bootstrap sencillo máquina con vagrant
#!/usr/bin/env bash
apt-get update
apt-get install -y apache2
sudo apt-get install -y php5
sudo apt-get install -y libapache2-mod-php5
sudo /etc/init.d/apache2 restart
sudo apt-get install -y curl
curl -sS https://getcomposer.org/installer | php
rm -rf /var/www
ln -fs /vagrant /var/www
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment