Skip to content

Instantly share code, notes, and snippets.

@rnickmccandless
rnickmccandless / Vagrantfile
Last active March 6, 2016 06:15
Vagrantfile - Centos 7.1 WordPress Provision & Hosted
# Vagrantfile.rb
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Edit these values
wp_vm_options = {
:wp_admin_email => 'your_email@example.com',
:vm_name => 'centos71-wp',
:wp_port => 8088, #port use on host
:vm_defined => 'default'
@rnickmccandless
rnickmccandless / Vagrantfile
Last active March 7, 2016 22:34
Vagrantfile - Centos 6.7 WordPress Provision & Hosted
# Vagrantfile.rb
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Edit these values
wp_vm_options = {
:wp_admin_email => 'your_email@example.com',
:vm_name => 'centos67-wp',
:wp_port => 8080, #port use on host
:vm_defined => 'default'