基础知识 Nginx location 配置语法 1. location [ = | ~ | ~* | ^~ ] uri { ... } 2. location @name { ... } location 配置可以有两…
分类:Nginx
Nginx 配置文件 nginx.conf 详解
定义Nginx运行的用户和用户组 user www www; //如果所有用户和用户组不相符 可以使用chown命令 nginx进程数,建议设置为等于CPU总核心数。 worker_processes 8; //不过我一…
用 PHP 的方式实现的各类算法合集
项目地址 https://github.com/m9rco/algo… 每周最少一更,求出题,求虐待 At least once a week, ask for problems and abuse 简易结构…
centos7通过yum安装nginx
yum install -y nginx 通过yum安装的时候提示下面的错误 [root@localhost yum.repos.d]# yum install nginx 已加载插件:fastestmirror, la…
升级你的hexo为https
本文以Debian 8为服务器栗子 最近升级了个人博客为https协议,写一个详细的教程帮助更多人升级https。 https的详细原理在此文中省略,简略来说,既是客户端在访问服务器时需要一个数字证书(里面包括公钥),它…
Docker安装与应用
一、docker安装 1、快捷安装 快捷安装参考: https://get.daocloud.io/#inst… curl -sSL https://get.daocloud.io/docker | sh 2…
nginx 对同一 ip 访问请求速率限制
模块ngx_http_limit_req_module 主要用到的指令 limit_req limit_req_log_level limit_req_status limit_req_zone 所述ngx_http_l…
nginx的an upstream response is buffered to a temporary file报错
修改nginx.conf client_header_buffer_size 256k; 把原来的32k改为256k docs nginx error日志报错
openresty的docker实例
docker docker pull openresty/openresty:1.9.15.1-trusty 启动 #!/usr/bin/env bash docker run -d --name="nginx" -p …
Inmp-(2)在ubuntu18.04中搭建lnmp环境
安装nginx apt-get方法安装nginx sudo apt-get install nginx 查看nginx安装后相关文件目录 安装目录是/etc/nginx 启动nginx服务 sudo /etc/init.…
一天一点linux(19):配置https
Nginx配置https #腾讯云证书文档 https://cloud.tencent.com/document/product/400/4143 备注,手动编译安装需要安加入 SSL 模块(http_ssl_modul…
关于nginx proxy_next_upstream 重试 和 max_fails的那些事
背景及简要分析 前几天一次故障定位的时候发现,后端服务(java)在从故障中恢复之后,会出现大量499,且会持续较长时间无法自行恢复。根本原因是服务容量问题,处理太慢导致客户端等不了了,主动断开。不过分析一下直接原因大概…