美文网首页
27. 增加更多网站

27. 增加更多网站

作者: 独步天堂 | 来源:发表于2017-10-03 20:12 被阅读16次
    • 你可能会想要为 Laravel 应用程序增加其他的 Nginx 站点。你可以在单个 Homestead 环境中运行多个 Laravel 程序。要添加其他网站,只需将网站配置信息添加到 Homestead.yaml 文件中:
    sites:
        - map: homestead.app
          to: /home/vagrant/Code/Laravel/public
        - map: another.app
          to: /home/vagrant/Code/another/public
    
    • 如果 Vagrant 没有自动管理你的「hosts」文件,你可能需要手动把新增的站点加入到该文件中:
    192.168.10.10  homestead.app
    192.168.10.10  another.app
    
    • 添加站点后,从 Homestead 目录运行 vagrant reload --provision 命令就可以应用新的更改。

    相关文章

      网友评论

          本文标题:27. 增加更多网站

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