Skip to content
This repository was archived by the owner on Feb 18, 2021. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ Vagrant.configure(2) do |config|
# The second parameter must be an absolute path of where to share the folder within the guest machine.
# Finally the third parameter is a set of non-required options to configure synced folders.
config.vm.synced_folder "public/", "/var/www/", group: 'www-data', :owner => "vagrant"

# config.ssh.forward_agent
#
# If true, agent forwarding over SSH connections is enabled.
config.ssh.forward_agent = true

# Run the main shell provisioner.
config.vm.provision 'shell', run: 'always' do |s|
Expand Down