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
@@ -168,7 +168,7 @@ Not familiar with Nginx? No problem. The `sites` property allows you to easily m
168
168
169
169
sites:
170
170
- map: homestead.test
171
-
to: /home/vagrant/code/Laravel/public
171
+
to: /home/vagrant/code/my-project/public
172
172
173
173
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.
174
174
@@ -329,7 +329,7 @@ Once your Homestead environment is provisioned and running, you may want to add
329
329
330
330
sites:
331
331
- map: homestead.test
332
-
to: /home/vagrant/code/Laravel/public
332
+
to: /home/vagrant/code/my-project/public
333
333
- map: another.test
334
334
to: /home/vagrant/code/another/public
335
335
@@ -347,7 +347,7 @@ Homestead supports several types of sites which allow you to easily run projects
347
347
348
348
sites:
349
349
- map: symfony2.test
350
-
to: /home/vagrant/code/Symfony/web
350
+
to: /home/vagrant/code/my-symfony-project/web
351
351
type: "symfony2"
352
352
353
353
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
359
359
360
360
sites:
361
361
- map: homestead.test
362
-
to: /home/vagrant/code/Laravel/public
362
+
to: /home/vagrant/code/my-project/public
363
363
params:
364
364
- key: FOO
365
365
value: BAR
@@ -386,7 +386,7 @@ If you would like the `schedule:run` command to be run for a Homestead site, you
386
386
387
387
sites:
388
388
- map: homestead.test
389
-
to: /home/vagrant/code/Laravel/public
389
+
to: /home/vagrant/code/my-project/public
390
390
schedule: true
391
391
392
392
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
493
493
494
494
sites:
495
495
- map: homestead.test
496
-
to: /home/vagrant/code/Laravel/public
496
+
to: /home/vagrant/code/my-project/public
497
497
php: "7.1"
498
498
499
499
In addition, you may use any of the supported PHP versions via the CLI:
0 commit comments