58 lines
2.2 KiB
Ruby
58 lines
2.2 KiB
Ruby
# -*- mode: ruby -*-
|
|
# vi: set ft=ruby :
|
|
|
|
# All Vagrant configuration is done below. The "2" in Vagrant.configure
|
|
# configures the configuration version (we support older styles for
|
|
# backwards compatibility). Please don't change it unless you know what
|
|
# you're doing.
|
|
Vagrant.configure("2") do |config|
|
|
# The most common configuration options are documented and commented below.
|
|
# For a complete reference, please see the online documentation at
|
|
# https://docs.vagrantup.com.
|
|
|
|
# Every Vagrant development environment requires a box. You can search for
|
|
# boxes at https://vagrantcloud.com/search.
|
|
config.vm.box = "generic/ubuntu1604"
|
|
|
|
# Create a forwarded port mapping which allows access to a specific port
|
|
# within the machine from a port on the host machine. In the example below,
|
|
# accessing "localhost:8080" will access port 80 on the guest machine.
|
|
# NOTE: This will enable public access to the opened port
|
|
config.vm.network "forwarded_port", guest: 3000, host: 8030 # gitea server
|
|
config.vm.network "forwarded_port", guest: 80, host: 8080 # HTTP proxy to gitea
|
|
config.vm.network "forwarded_port", guest: 443, host: 8443 # HTTPS proxy to gitea
|
|
|
|
# Provider-specific configuration so you can fine-tune various
|
|
# backing providers for Vagrant. These expose provider-specific options.
|
|
# Example for VirtualBox:
|
|
#
|
|
config.vm.provider "virtualbox" do |vb|
|
|
# Customize the amount of memory on the VM:
|
|
vb.memory = "1024"
|
|
end
|
|
|
|
# Enable provisioning with a shell script. Additional provisioners such as
|
|
# Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the
|
|
# documentation for more information about their specific syntax and use.
|
|
# config.vm.provision "shell", inline: <<-SHELL
|
|
# apt-get update
|
|
# apt-get install -y apache2
|
|
# SHELL
|
|
|
|
config.vm.provision "chef_solo" do |chef|
|
|
chef.version = "14.12.3" # version 14.12.9 fails to run
|
|
chef.cookbooks_path = [
|
|
'ops/cookbooks/',
|
|
'ops/cookbooks/vendor'
|
|
]
|
|
chef.roles_path = 'ops/roles'
|
|
chef.add_role('app')
|
|
chef.json = {
|
|
|
|
'custom-domain': 'localhost.vm42.us',
|
|
'custom-title': 'My gitea server!',
|
|
'db-password': 'mypassword',
|
|
}
|
|
end
|
|
end
|