首页
分类
归档
动态
友链
1
使用Cloudflare开启SSL
2
Elastic 集成 GitLab Oauth登录
3
延时消息是如何实现的?
4
小猪佩奇第一集知识点
5
路由基础知识
阿紫
人非生而知之
持续学习,未来可期。
累计撰写
169
篇文章
累计创建
69
个标签
累计收到
19
条评论
导航
首页
分类
归档
动态
友链
目录
搜索
标签搜索
mq
halo
elastic
视频格式转换
计算机基本结构
k8s
translation
brew
单元测试
qps
daily
sentinel
duration
kafka
springboot
gateway
feign
ribbon
nacos
trie
linux
elk
skywalking
bitmap
nat
环境搭建
rabbitmq
spring
线程池
Queue
lock
Netty
IO
堆树
synchronized
volatile
可见性
有序性
原子性
JMM
计算机
哈夫曼树
B+树
红黑树
docker
redis
二叉搜索树
树
动态规划
贪心
定时任务
排序
队列
栈
链表
tomcat
nginx
数组
时间复杂度
zookeeper
zk
springcloud
elasticsearch
es
mysql
JVM
java
spring security
博客搭建
标签
nginx
nginx重定向回首页
2 年前
502
0
0
74.2℃
nginx
nginx重定向回首页server { listen 18001; server_name _; location / { rewrite ^/(?<left>.*)$ / break; proxy_pass http://192.168.0.1:18002
Nginx正向代理
4 年前
708
0
0
94.8℃
nginx
添加模块由于nginx本身不支持https代理,这里需要引入第三方模块ngx_http_proxy_connect_module以及还要下载openssl-1.1.1d下载地址:openssl-1.1.1dngx_http_proxy_connect_module#首先需要给nginx打上ngx_h
Nginx高速缓存
4 年前
794
0
0
103.4℃
nginx
增加缓存配置#proxy_cache_path 缓存路径#levels缓存层级及目录位数#levels=1:2表示去缓存文件倒数第一位做一级目录,取倒数第二位做二级目录#如缓存文件为:a6d89caee4085dc4da7ba922d59600e6则生成缓存文件路径为:6/0e/a6d89caee4
Nginx反向代理及负载均衡
4 年前
776
0
0
101.6℃
nginx
准备两个tomcat结点root@ubuntu:~# curl 127.0.0.1:8081this is 8081 tomcatroot@ubuntu:~# curl 127.0.0.1:8082this is 8082 tomcat反向代理配置locationserver {listen 80
Nginx 简单使用
4 年前
751
0
0
99.1℃
nginx
nginx 基本命令查看nginx命令nginx -vroot@ubuntu:/usr/local/nginx/sbin# ./nginx -?nginx version: nginx/1.14.0Usage: nginx [-?hvVtTq] [-s signal] [-c filename] [
Nginx 安装
4 年前
1175
0
0
141.5℃
nginx
安装编译环境yum -y install make zlib zlib-devel gcc-c++ libtool openssl openssl-devel pcre pcre-devel如果不预先安装的话,安装nginx时会提示缺少xxx依赖库,根据提示一步步安装也是可以的。安装nginx#下载