type
status
date
slug
summary
tags
category
icon
password
Nginx
nginx是一个负载均衡的web服务器,也可以反向代理转发请求到其他web服务器,如tomcat等
用Docker安装
docker pull nginx
配置文件
location匹配规则和优先级
- = 表示精确匹配
- ^~ 表示最佳匹配
- ~ 表示用正则表达式匹配,区分大小写
- ~* 表示用正则表达式匹配,不区分大小写
反向代理
以halo博客为例,在location中设置了
proxy_pass
后,nginx就不会再把自己作为web服务器,而是将请求转发到指定服务动静分离
就是把静态资源部署到nginx,目前的前后端分离项目,把前端打包出dist目录中的文件放到nginx/html下即可
- Author:风之旅人
- URL:https://www.hrmi.fun//article/nginx-config
- Copyright:All articles in this blog, except for special statements, adopt BY-NC-SA agreement. Please indicate the source!