user3872505
user3872505

Reputation: 135

vagrant - Vagrantfile: sync multiple folders

I have tried the following to sync multiple folders from host to guest machine. But only one folder is getting synced, the later one.

config.vm.synced_folder "host/site1", "/var/www/site1" 

config.vm.synced_folder "host/site2", "/var/www/site2"

Upvotes: 8

Views: 1578

Answers (1)

fico7489
fico7489

Reputation: 8560

In newest virtualbox and vagrant versions this is improved and work without problems...

Upvotes: 1

Related Questions