nginx安装
2018-01-03 本文已影响8人
想入飞飞___
0.下载
从网站下载windows版nginx,
http://nginx.org/en/download.html
1.安装
解压后,双击“nginx.exe”,然后打开浏览器输入以下回车
http://localhost/
看到下面的界面就成功 了
成功.png
2.跑个Demo
写个hello,world
<html>
<head>
<title>
test
</title>
</head>
<body>
hello,world
</body>
</html>
保存为test.html放到nginx目录下html文件夹里面
http://localhost/test.html
不出意外,可以看到页面上输出"hello,world",
3.总结
从这里可以看出,其实我们前后端分离的时候 ,部署到服务器上也是可以分开部署的,html放到nginx里,接口打好包跑在另外一个端口上,用户请求直接访问nginx静态页面,静态页面再请求接口,这样就实现了部署的分离。