rattail-fabdemo/servers/host/Vagrantfile
Lance Edgar cf06a1987d Initial commit, with 'host' server example.
Even that isn't quite complete, but I'm anxious to test other things..
2015-11-15 20:22:01 -06:00

8 lines
218 B
Ruby

# -*- mode: ruby -*-
Vagrant.configure("2") do |config|
config.vm.box = "debian/jessie64"
config.vm.network "forwarded_port", guest: 80, host: 9080
config.vm.network "forwarded_port", guest: 443, host: 9443
end