nginx是反向代理 :功能是帮助用户请求资源,
用户不知道访问的服务器是是谁,后台服务器了解真实的服务器是谁.
nginx 命令:
cls 清屏
nginx -s stop 关闭
start nginx 开启
nginx -s reload 重启
taskkill /f /fi "imagename eq nginx.exe" 批量关闭nginx服务
在C盘中 修改hosts
反向代理 服务地址
server{
#默认端口
listen 80;
#服务名称
server_name localhost;
#配置具体路径 /拦截全部请求 /利用正则实现路劲拦截
#就是请求转发
location / {
#转向文件夹目录
root HTML;
#系统默认跳转的页面
index index.HTML index.htm;
}
}
#代理服务器搭建(后台服务器)
#搭建后台服务器
server{
listen 80;
server_name manage.jt.com;
location /{
#配置代理路劲
proxy_pass http://localhost:8091/;
}
}