Last active
August 3, 2018 15:54
-
-
Save axelitus/1100376ee2454e789ecc416655a1bf6a to your computer and use it in GitHub Desktop.
Homestead configuration example using vmware_esxi provider
This file contains hidden or 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" | |
memory: 2048 | |
cpus: 1 | |
provider: vmware_esxi | |
esxi_hostname: esxi_hypervisor | |
esxi_username: homestead | |
esxi_password: "file:~/.secrets/vmware_esxi.pwd" | |
esxi_disk_store: storage1 | |
esxi_virtual_network: ["Default", "Homestead Network", "Local Network"] | |
esxi_debug: false | |
networks: | |
- type: "private_network" | |
ip: "172.16.1.200" | |
netmask: "255.255.0.0" | |
authorize: ~/.ssh/id_rsa.pub | |
keys: | |
- ~/.ssh/id_rsa | |
folders: | |
- map: "/home/axel/code" | |
to: /home/vagrant/code | |
type: nfs | |
sites: | |
- map: mysite.test | |
to: /home/vagrant/code/mysite/public | |
databases: | |
- mysite |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment