Skip to content

Instantly share code, notes, and snippets.

View radixs's full-sized avatar

Radoslaw Kurowski radixs

View GitHub Profile
@ricardocanelas
ricardocanelas / VagrantFile
Last active November 21, 2025 10:48
Vagrant / PHP7.1 + MySQL5.6 + Apache
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.network "private_network", ip: "192.168.100.100"
config.vm.synced_folder "./www", "/var/www/", :nfs => { :mount_options => ["dmode=777","fmode=666"] }