码迷,mamicode.com
首页 > 系统相关 > 详细

mac系统下用nginx服务器部署页面

时间:2020-01-04 16:10:09      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:ima   服务器   conf   安装路径   target   文本编辑   lan   user   ref   

1.安装nginx(需要先安装Homebrew)。使用命令

brew install nginx

安装nginx。

2.用命令

open /usr/local/Cellar/nginx

用访达打开安装路径。

3.打开bin文件夹,双击nginx文件,启动nginx,然后访问http://localhost:8080/

技术图片

 

出现如图界面,则启动nginx成功。

4.打开配置文件。用命令

open /usr/local/etc/nginx

打开配置文件所在路径,再用文本编辑器打开nginx.conf文件进行编辑。

5.修改部署路径为项目路径,如项目首页路径为/Users/luoyihao/test/index.html,

则把

location / {
    root   html;
    index  index.html index.htm;
}

修改为

location / {
    root   /Users/luoyihao;
    index  index.html index.htm;
}

6.重新启动nginx,使用命令

nginx -s reload

,然后访问http://localhost:8080/test/index.html即可。

mac系统下用nginx服务器部署页面

标签:ima   服务器   conf   安装路径   target   文本编辑   lan   user   ref   

原文地址:https://www.cnblogs.com/luoyihao/p/12149014.html

(0)
(1)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!