Windows安装配置Nginx及绑定本地代码

一、Nginx简介:

是一个高性能的HTTP和反向代理服务器,特点是占用内存少,并发能力强,专为性能优化而开。它也是一种轻量级的Web服务器,可以作为独立的服务器部署网站(类似Tomcat)。它高性能和低消耗内存的结构受到很多大公司青睐,如淘宝网站架设。Nginx官网
Windows安装配置Nginx及绑定本地代码_第1张图片
Windows安装配置Nginx及绑定本地代码_第2张图片
下载安装即可。

二、安装部署:

可参考这篇博客:https://www.cnblogs.com/taiyonghai/p/9402734.html
注意: 在给nginx配置SSL证书之后,https可以访问,但是http报400 bad request错误。
Windows安装配置Nginx及绑定本地代码_第3张图片
方法1:使用https://ip:port/*方式访问,如果直接ip:port/*则是http协议,所以会报错The plain HTTP request was sent to HTTPS port(普通的HTTP请求被发送到HTTPS端口)
方法 2:打开配置文件,查看HTTPS server段的配置:

修改前:

server {
        listen       443 ssl;
        server_name  localhost;
        ...
}

修改方式,将监听端口后的“ssl”删除,即:

server {
        listen       443;
        server_name  localhost;
        ...
}

这样再直接用ip:port/*访问则不会再报The plain HTTP request was sent to HTTPS port错误了。

三、绑定本地代码到服务器:

通过nginx.conf文件配置如下,可以反向代理到指定服务器:
在这里插入图片描述
但要绑定本地代码还得配置本地路径:

location ~ .*?/corpchangeprimaryoffering4fttx/html/changeprimaryoffer.html
 { alias D:/code/corpchangeprimaryoffering4fttx/html/changeprimaryoffer.html ; break; }

Windows安装配置Nginx及绑定本地代码_第4张图片

在本地changeprimaryoffer.html文件中添加弹窗,访问页面时就会弹出,说明绑定成功。

你可能感兴趣的:(Nginx)