I have just got onto my machine and added a new site to my vagrant setup file in the Homestead.yaml file like so:
---
ip: "192.168.10.10"
memory: 2048
cpus: 1
provider: virtualbox
authorize: ~/.ssh/id_rsa.pub
keys:
- ~/.ssh/id_rsa
folders:
- map: /Freelance/projects
to: /home/vagrant/projects
- map: /Freelance/projects/synergy-camps/synergy-camps
to: /home/vagrant/projects
sites:
- map: scoff_app.local
to: /home/vagrant/projects/scoff/scoff-api/public
- map: phpmyadmin.app
to: /home/vagrant/projects/phpmyadmin
- map: synergy_camps.dev
to: /home/vagrant/projects/synergy-camps/synergy-camps/public
databases:
- homestead
- synergycamps
databases:
- homestead
- synergycamps
variables:
- key: APP_ENV
value: local
# blackfire:
# - id: foo
# token: bar
# client-id: foo
# client-token: bar
# ports:
# - send: 93000
# to: 9300
# - send: 7777
When I cd into my /Homestead directory and run:
vagrant up
I get the error below:
default: Warning: Authentication failure. Retrying...
Has anyone had this before?