blob: 86adde9f49c846fb937bffdf3c521d65b1a19288 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  | 
Vagrant.configure(2) do |config|
  config.vm.box = "debian/stretch64"
  config.vm.network :private_network, ip: "192.168.33.99"
  config.vm.provision "ansible" do |ansible|
    ansible.verbose = "v"
    ansible.skip_tags = "dhparam"
    ansible.extra_vars = {
      nginx_disable_ssl: true
    }
    ansible.playbook = "playbooks/borg1.yml"
  end
  config.vm.synced_folder ".", "/vagrant" #, type: "nfs"
end
 
  |