Skip to content

Commit b0e4f0b

Browse files
authored
Merge pull request #4908 from dansgithubuser/5.7
[5.7] issue #4905 clearer sites example config
2 parents 77b9e71 + 18a9929 commit b0e4f0b

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
@@ -170,7 +170,7 @@ Not familiar with Nginx? No problem. The `sites` property allows you to easily m
170170

171171
sites:
172172
- map: homestead.test
173-
to: /home/vagrant/code/Laravel/public
173+
to: /home/vagrant/code/my-project/public
174174

175175
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.
176176

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

332332
sites:
333333
- map: homestead.test
334-
to: /home/vagrant/code/Laravel/public
334+
to: /home/vagrant/code/my-project/public
335335
- map: another.test
336336
to: /home/vagrant/code/another/public
337337

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

350350
sites:
351351
- map: symfony2.test
352-
to: /home/vagrant/code/Symfony/web
352+
to: /home/vagrant/code/my-symfony-project/web
353353
type: "symfony2"
354354

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

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

389389
sites:
390390
- map: homestead.test
391-
to: /home/vagrant/code/Laravel/public
391+
to: /home/vagrant/code/my-project/public
392392
schedule: true
393393

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

496496
sites:
497497
- map: homestead.test
498-
to: /home/vagrant/code/Laravel/public
498+
to: /home/vagrant/code/my-project/public
499499
php: "5.6"
500500

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

0 commit comments

Comments
 (0)