Skip to content

Commit dd36f83

Browse files
authored
Merge branch '5.7' into 5.7
2 parents 4a3a90b + b0e4f0b commit dd36f83

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

homestead.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ Not familiar with Nginx? No problem. The `sites` property allows you to easily m
168168

169169
sites:
170170
- map: homestead.test
171-
to: /home/vagrant/code/Laravel/public
171+
to: /home/vagrant/code/my-project/public
172172

173173
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.
174174

@@ -329,7 +329,7 @@ Once your Homestead environment is provisioned and running, you may want to add
329329

330330
sites:
331331
- map: homestead.test
332-
to: /home/vagrant/code/Laravel/public
332+
to: /home/vagrant/code/my-project/public
333333
- map: another.test
334334
to: /home/vagrant/code/another/public
335335

@@ -347,7 +347,7 @@ Homestead supports several types of sites which allow you to easily run projects
347347

348348
sites:
349349
- map: symfony2.test
350-
to: /home/vagrant/code/Symfony/web
350+
to: /home/vagrant/code/my-symfony-project/web
351351
type: "symfony2"
352352

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

360360
sites:
361361
- map: homestead.test
362-
to: /home/vagrant/code/Laravel/public
362+
to: /home/vagrant/code/my-project/public
363363
params:
364364
- key: FOO
365365
value: BAR
@@ -386,7 +386,7 @@ If you would like the `schedule:run` command to be run for a Homestead site, you
386386

387387
sites:
388388
- map: homestead.test
389-
to: /home/vagrant/code/Laravel/public
389+
to: /home/vagrant/code/my-project/public
390390
schedule: true
391391

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

494494
sites:
495495
- map: homestead.test
496-
to: /home/vagrant/code/Laravel/public
496+
to: /home/vagrant/code/my-project/public
497497
php: "7.1"
498498

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

0 commit comments

Comments
 (0)