Skip to content

Instantly share code, notes, and snippets.

@jonmbake
Created August 6, 2019 20:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonmbake/f3b90631c6349ef240e4396b99f671a7 to your computer and use it in GitHub Desktop.
Save jonmbake/f3b90631c6349ef240e4396b99f671a7 to your computer and use it in GitHub Desktop.
Vagrantfile for Local Provisioning of Matomo on Ubuntu 18.04
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/bionic64"
config.vm.network :forwarded_port, guest: 80, host: 8080
config.vm.provision :ansible_local do |ansible|
ansible.limit = 'local'
ansible.inventory_path = 'hosts'
ansible.playbook = 'local.yml'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment