devbox is a Vagrant development machine provisioned and preconfigured for working with PHP and the Laravel framework out of the box. From nginx, php over beanstalkd to composer it has got everything you need for Laravel 4.
Ubuntu 14.04 64bit, Nginx, PHP5.5, php-fpm, xdebug, composer, MySQL 5.5, Redis, Beanstalkd, supervisord, Sphinx, ngrok, Node.js, MongoDB
- VirtualBox - Free virtualization software
- Vagrant - Tool for working with VirtualBox images
- Install VirtualBox and Vagrant ( >= 1.5.0)
- Clone this repository
git clone https://github.com/Aboalarm/devbox.git
. - Run
vagrant up
inside the newly created directory. (the first time you run Vagrant it will fetch the virtual box image which is ~350MB. So this could take some time) - Vagrant will now use Puppet to provision the devbox (this could take a few minutes)
- Point "devbox" and any other vhosts to
192.168.3.3
in your hosts file of your host OS. e.g.192.168.3.3 devbox myproject.dev myotherproject.dev [HOSTNAME]
- Now just clone/copy your Laravel projects into
www/[HOSTNAME]
and open http://[HOSTNAME] in your browser. Done!
The www folder is automatically synced to the VM (/var/www). This is why we clone our Laravel project into this folder. The sync works in both directions. So any files generated by Laravel (/storage folder for example) will be accessible from your host machine.
- SSH User:
vagrant
PW:vagrant
- MySQL User:
root
PW:root
(access MySQL through SSH)
vagrant up
starts the virtual machine and provisions itvagrant ssh
gives you shell access to the virtual machinevagrant suspend
will essentially put the machine to 'sleep' withvagrant resume
waking it back upvagrant reload
will reload the VM. Do this when the VM config changed. For exmpale when you changed one of the configs (e.g. php.ini, sphinx.conf, etc. or after a git pull of this repo)vagrant halt
attempts a graceful shutdown of the machine and will need to be brought back withvagrant up
vagrant halt --force
force shutdown if normal halt doesn't workvagrant destroy
you broke something? this will destroy the VM and reprovisions it again completely. Takes some time.
For more: Vagrant is very well documented
Please fork, improve, extend, make pull request, wrap it as a gift. Use the GitHub Issues!
Ngrok creates a tunnel from the public internet (http://subdomain.ngrok.com) to a website on your local machine. You can give this URL to anyone to allow them to try out a website you're developing without doing any deployment.
For all the features and documentation, check their site: http://ngrok.com
and usage guide: http://ngrok.com/usage
.
- In
/etc/nginx/sites-available/ngrok.dev
changeroot
path (ie. replaceyoursite.dev
with your site directory) - Make ngrok configuration active by symlinking it:
sudo ln -s /etc/nginx/sites-available/ngrok.dev /etc/nginx/sites-enabled/ngrok.dev
- Restart nginx by doing
sudo /etc/init.d/nginx restart
- Start ngrok service with:
ngrok :80
- NFS folders do not work on Windows hosts. Vagrant will ignore your request for NFS synced folders on Windows.