You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: homestead.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -170,7 +170,7 @@ Not familiar with Nginx? No problem. The `sites` property allows you to easily m
170
170
171
171
sites:
172
172
- map: homestead.test
173
-
to: /home/vagrant/code/Laravel/public
173
+
to: /home/vagrant/code/my-project/public
174
174
175
175
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.
176
176
@@ -331,7 +331,7 @@ Once your Homestead environment is provisioned and running, you may want to add
331
331
332
332
sites:
333
333
- map: homestead.test
334
-
to: /home/vagrant/code/Laravel/public
334
+
to: /home/vagrant/code/my-project/public
335
335
- map: another.test
336
336
to: /home/vagrant/code/another/public
337
337
@@ -349,7 +349,7 @@ Homestead supports several types of sites which allow you to easily run projects
349
349
350
350
sites:
351
351
- map: symfony2.test
352
-
to: /home/vagrant/code/Symfony/web
352
+
to: /home/vagrant/code/my-symfony-project/web
353
353
type: "symfony2"
354
354
355
355
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
361
361
362
362
sites:
363
363
- map: homestead.test
364
-
to: /home/vagrant/code/Laravel/public
364
+
to: /home/vagrant/code/my-project/public
365
365
params:
366
366
- key: FOO
367
367
value: BAR
@@ -388,7 +388,7 @@ If you would like the `schedule:run` command to be run for a Homestead site, you
388
388
389
389
sites:
390
390
- map: homestead.test
391
-
to: /home/vagrant/code/Laravel/public
391
+
to: /home/vagrant/code/my-project/public
392
392
schedule: true
393
393
394
394
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
495
495
496
496
sites:
497
497
- map: homestead.test
498
-
to: /home/vagrant/code/Laravel/public
498
+
to: /home/vagrant/code/my-project/public
499
499
php: "5.6"
500
500
501
501
In addition, you may use any of the supported PHP versions via the CLI:
0 commit comments