码迷,mamicode.com
首页 > 其他好文 > 详细

在nginx上部署页面,使用ip访问页面,实现跨设备访问本地静态页面

时间:2017-04-06 00:01:06      阅读:1761      评论:0      收藏:0      [点我收藏+]

标签:root   页面   html   命令   conf   输入   安装包   安装nginx   bsp   

1、在nginx官网下载并安装nginx,下载链接:http://nginx.org/en/download.html。

2、修改安装包中conf文件夹中的nginx.conf的root路径,使用#将默认的路径注释掉,增加新的root路径,如下:  

  location / {
    #root html;
    root F:/weike/dazuoye;
    index index.html index.htm;
  }

3、命令行输入ipconfig查看本机ip地址

4、在pc端或移动端浏览器输入http://xxx.xxx.xxx.xxx:8080/index.html就可以在页面渲染F:/weike/dazuoye文件夹下的index.html页面了。

在nginx上部署页面,使用ip访问页面,实现跨设备访问本地静态页面

标签:root   页面   html   命令   conf   输入   安装包   安装nginx   bsp   

原文地址:http://www.cnblogs.com/liyan22/p/6670787.html

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