nginx 使用
All paths are either absolute or relative to prefix path nginx.org/en/docs/configure.html
vhost:虚拟主机
vps:虚拟私人服务器
nginx.conf中配置日志类型:
error_log logs/error.log debug
nginx -t 测试配置
匹配规则
location [=|~|~*|^~] /uri/ { … }
- = 精确匹配
- ^ 开头
- ~区分大小写的正则匹配
- !~区分大小写的正则不匹配
- ~*不区分大小写的正则匹配
- !~*不区分大小写的正则不匹配
- 匹配规则从前往后依次匹配,直到一个成功