Created
July 6, 2017 13:13
-
-
Save olssonm/20e260e1111946da06b47621ed9421e0 to your computer and use it in GitHub Desktop.
Laravel Homestead
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
ip: "192.168.10.20" | |
version: 0.3.3 | |
memory: 2048 | |
cpus: 1 | |
hostname: homestead56 | |
name: homestead56 | |
provider: virtualbox | |
authorize: ~/.ssh/id_rsa.pub | |
keys: | |
- ~/.ssh/id_rsa | |
folders: | |
- | |
map: ~/Dev | |
to: /home/vagrant/code | |
sites: | |
- | |
map: myfirstlegacysite.app | |
to: /home/vagrant/code/myfirstlegacysite/public | |
- | |
map: myfirstsecondsite.app | |
to: /home/vagrant/code/myfirstsecondsite/public | |
databases: | |
- homestead | |
variables: | |
- key: APP_ENV | |
value: local |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ip: 192.168.10.10 | |
name: "homestead7" | |
memory: 2048 | |
cpus: 1 | |
provider: virtualbox | |
authorize: ~/.ssh/id_rsa.pub | |
keys: | |
- ~/.ssh/id_rsa | |
folders: | |
- | |
map: ~/Dev | |
to: /home/vagrant/code | |
sites: | |
- | |
map: myfirstsite.app | |
to: /home/vagrant/code/myfirstsite/public | |
- | |
map: mysecondsite.app | |
to: /home/vagrant/code/mysecondsite/public | |
databases: | |
- homestead | |
name: homestead | |
hostname: homestead | |
ports: | |
- send: 33070 | |
to: 3306 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment