Add fabric bundle for 'theo-server'

This commit is contained in:
Lance Edgar 2020-09-19 18:55:17 -05:00
parent 9e275a35f8
commit a26e3088c5
23 changed files with 1032 additions and 0 deletions

View file

@ -0,0 +1,27 @@
# -*- mode: ruby; -*-
Vagrant.configure("2") do |config|
# live machine runs Debian 10 Buster
config.vm.box = "debian/buster64"
# live machine runs Ubuntu 20.04 Focal Fossa
#config.vm.box = "ubuntu/focal64"
# this may be necessary for big data import tasks. you can raise or lower
# it, or comment out if you find that you don't need it
config.vm.provider "virtualbox" do |v|
v.memory = 4096
end
# Theo app
config.vm.network "forwarded_port", guest: 7000, host: 7000
# Theo (stage) app
config.vm.network "forwarded_port", guest: 7010, host: 7010
# # apache
# config.vm.network "forwarded_port", guest: 80, host: 7080
# config.vm.network "forwarded_port", guest: 443, host: 7443
end