Add fabric bundle for 'theo-server'
This commit is contained in:
parent
9e275a35f8
commit
a26e3088c5
23 changed files with 1032 additions and 0 deletions
27
machines/theo-server/Vagrantfile.dist
Normal file
27
machines/theo-server/Vagrantfile.dist
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue