摘要:
Nginx安装 [root@localhost src]# tar xf nginx-1.14.2.tar.gz [root@localhost src]# ls nginx-1.14.2 nginx-1.14.2.tar.gz [root@localhost nginx-1.14.2]# yum 阅读全文
2022年3月7日
摘要:
nginx状态页: nginx状态页:基于nginx模块ngx_http_auth_basic_module实现,在编译安装nginx的时候需要添加编译参数--with-http-stub-status-module,否则配置完成后监测会提示语法错误。状态页用于输出nginx的基本信息 #配置如下: 阅读全文
摘要:
location详解 在没有使用正则表达式的时候,nginx会先在server中的多个location选取匹配度最高的一个uri,uri是用户请求的字符串,即域名后面的web文件路径,然后使用该location模块中的正则url和字符串,如果匹配成功就结束搜索,并使用此location处理请求 语法 阅读全文