Skip to content
Closed
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
12 changes: 6 additions & 6 deletions homestead.md
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ Not familiar with Nginx? No problem. The `sites` property allows you to easily m

sites:
- map: homestead.test
to: /home/vagrant/code/Laravel/public
to: /home/vagrant/code/my-project/public

If you change the `sites` property after provisioning the Homestead box, you should re-run `vagrant reload --provision` to update the Nginx configuration on the virtual machine.

Expand Down Expand Up @@ -331,7 +331,7 @@ Once your Homestead environment is provisioned and running, you may want to add

sites:
- map: homestead.test
to: /home/vagrant/code/Laravel/public
to: /home/vagrant/code/my-project/public
- map: another.test
to: /home/vagrant/code/another/public

Expand All @@ -349,7 +349,7 @@ Homestead supports several types of sites which allow you to easily run projects

sites:
- map: symfony2.test
to: /home/vagrant/code/Symfony/web
to: /home/vagrant/code/my-symfony-project/web
type: "symfony2"

The available site types are: `apache`, `apigility`, `expressive`, `laravel` (the default), `proxy`, `silverstripe`, `statamic`, `symfony2`, `symfony4`, and `zf`.
Expand All @@ -361,7 +361,7 @@ You may add additional Nginx `fastcgi_param` values to your site via the `params

sites:
- map: homestead.test
to: /home/vagrant/code/Laravel/public
to: /home/vagrant/code/my-project/public
params:
- key: FOO
value: BAR
Expand All @@ -388,7 +388,7 @@ If you would like the `schedule:run` command to be run for a Homestead site, you

sites:
- map: homestead.test
to: /home/vagrant/code/Laravel/public
to: /home/vagrant/code/my-project/public
schedule: true

The Cron job for the site will be defined in the `/etc/cron.d` folder of the virtual machine.
Expand Down Expand Up @@ -495,7 +495,7 @@ Homestead 6 introduced support for multiple versions of PHP on the same virtual

sites:
- map: homestead.test
to: /home/vagrant/code/Laravel/public
to: /home/vagrant/code/my-project/public
php: "5.6"

In addition, you may use any of the supported PHP versions via the CLI:
Expand Down