How to use this box with Vagrant:
Vagrant.configure("2") do |config|
config.vm.box = "twistedbytes/webserver"
config.vm.box_version = "0.3.20"
end
vagrant init twistedbytes/webserver \
--box-version 0.3.20
vagrant up
This version was created over 6 years ago.
Update to add the option to change the docroot name/location. This was "needed" for Silverstripe 4.1, but can be useful for other frameworks. See config/webservervhost.conf
With update added some small changes