/vagrant-lnmp

PHP Development Environment with NGiNX + PHP 5.4 + MySQL

Primary LanguageRuby

Virtual Development Environment

It gives a pratical and quickly up development environment. It will create a environment based on current folder name.

The VM will provision a server with NGiNX + PHP 5.4 + MySQL

  1. Install Vagrant and Virtual Box on your system see vagrantup.com see virtualbox.org

  2. Clone this repo and rename target folder

    git clone --branch=master git@github.com:tonicospinelli/vagrant-lnmp.git my-path
  3. Change guest IP Address, if you want

    web.vm.network :private_network, ip: "33.33.33.100" # line 16
  4. Remember to include the hostname and ip address in local /etc/hosts:

    sudo sh -c 'echo "\n33.33.33.100\t${PWD##*/}.dev ${PWD##*/}.test ${PWD##*/}.prod\n" >> /etc/hosts'
  5. Execute the command

    vagrant up
  6. Go to browser and call my-path.dev