在nginx上部署页面,使用ip访问页面,实现跨设备访问本地静态页面
Posted 小燕飞呀飞
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在nginx上部署页面,使用ip访问页面,实现跨设备访问本地静态页面相关的知识,希望对你有一定的参考价值。
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访问页面,实现跨设备访问本地静态页面的主要内容,如果未能解决你的问题,请参考以下文章