Initial commit, with 'host' server example.

Even that isn't quite complete, but I'm anxious to test other things..
This commit is contained in:
Lance Edgar 2015-11-15 20:22:01 -06:00
commit cf06a1987d
17 changed files with 571 additions and 0 deletions

7
servers/host/Vagrantfile vendored Normal file
View file

@ -0,0 +1,7 @@
# -*- 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