2
votes

I'm out of ideas about what I can do to finish my Laravel Homestead install.

Some infos :

  • laravel/homestead (virtualbox, 0.2.4)
  • vagrant base is lucid32. I can't use the serve command with SSH.

Here is my homestead.yaml :

---
ip: "192.168.10.10"
memory: 2048
cpus: 1

authorize: ~/.ssh/id_rsa.pub

keys:
    - ~/.ssh/id_rsa

folders:
    - map: /Users/bolos/base
      to: /home/vagrant/base

sites:
    - map: homestead.app
      to: /home/vagrant/base/homestead/public

databases:
    - homestead

variables:
    - key: APP_ENV
      value: local

provider: virtualbox

# blackfire:
#     - id: foo
#       token: bar

I don't know what else I can provide to help, but feel free to ask.

Thank you in advance.

1
Are the files in your document root readable by the web server? (in /home/vagrant/base/homestead)Bogdan
Err, maybe I've done something wrong but there's nothing except the public directory in my homestead one.I'll look for some chomdding then. Thank you.Bolos

1 Answers

2
votes

According to your configuration you must replace:

to: /home/vagrant/base/homestead/public

with:

to: /home/vagrant/base/public

And this should work if you have Laravel on /Users/bolos/base.