Fork me on GitHub
摘要: return code [text]; #返回客户端指定的状态码和文本说明return code URL;return URL;停止处理,并返回给客户端指定的响应码(包括: 204, 400, 402 — 406, 408, 410, 411, 413, 416, 500 — 504),并对 301 阅读全文
posted @ 2021-06-03 18:41 Alex-Lzy 阅读(229) 评论(0) 推荐(0) 编辑
摘要: ngx_http_rewrite_module模块:将用户请求的URI基于PCRE regex所描述的模式进行检查,而后完成重定向替换 一、使用if判断,通过return,将http跳转到https vim /etc/nginx/conf.d/test.conf server { listen 44 阅读全文
posted @ 2021-06-03 17:43 Alex-Lzy 阅读(2035) 评论(1) 推荐(1) 编辑
摘要: 1、生成证书 cd /etc/pki/tls/certs/ make www.a.net.crt umask 77 ; \/usr/bin/openssl genrsa -aes128 2048 > www.a.net.keyGenerating RSA private key, 2048 bit 阅读全文
posted @ 2021-06-03 15:01 Alex-Lzy 阅读(715) 评论(0) 推荐(0) 编辑
摘要: 使用模块 ngx_http_gzip_module 用gzip方法压缩响应数据,节约带宽 一、启用或禁用gzip压缩 gzip on | off; 二、压缩比由低到高:1 到 9, 默认:1 gzip_comp_level level; 压缩比越高,越消耗CPU 三、匹配到客户端浏览器不执行压缩 g 阅读全文
posted @ 2021-06-03 12:36 Alex-Lzy 阅读(638) 评论(0) 推荐(0) 编辑