美文网首页vagrant
windows install laravel/homestea

windows install laravel/homestea

作者: avenli | 来源:发表于2016-06-17 17:36 被阅读31次

    First Steps

    install vritualbox 5.x 、gitBash as well as vagrant.

    1. installing the homestead Vargrant box

      vagrant box add laravel/homestead
      
    2. installing homestead

       cd //your work floder 
       git clone https://github.com/laravel/homestead.git Homestead
      

      then cd Homestead

       bash init.sh //command to create Homestead.aml which will be placed in the ~./homestead (C:/User/aven/.homestead)
      
    3. configuring your homestrad

       //shared floder..
           floders:
           -map:G:/project/php
            to:/home/vagrant/Code
      
       //nginx sites
           sites:
           -map:aven.dev
            to:/home/vagrant/Code/laravel/public
      
    4. configuring your hosts file

       //the line you add to C:/windows/system32/driver/etc/hosts
       192.168.10.10 aven.dev
      
    5. lanuching your vbox

      //cd your homestead floder
      vagrant up
      

    you can use ssh to connect vbox

    1. install ssh

      ssh-keygen -t rsa -C "you@homestead"
      
    2. configuing your alias

       alias vm="ssh vagrant@127.0.0.1 -p 2222"
      
    3. use you vm command to connect your vbox

    Powered By Aven

    相关文章

      网友评论

        本文标题:windows install laravel/homestea

        本文链接:https://www.haomeiwen.com/subject/jruvdttx.html