Skip to content

Instantly share code, notes, and snippets.

View glaucomorais's full-sized avatar
😣
I may be slow to respond.

Glauco Morais glaucomorais

😣
I may be slow to respond.
View GitHub Profile
@glaucomorais
glaucomorais / Vagrantfile
Last active March 30, 2019 09:16
Basic Vagrant with CentOS + Nginx + PHP-FPM + MySQL bootstrap
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.vm.box = "centos-65-x64"
config.vm.network "forwarded_port", guest: 3306, host: 3306
config.vm.network "private_network", ip: "192.168.56.101"
config.vm.provider "virtualbox" do |vb|