码迷,mamicode.com
首页 >  
搜索关键字:ngx    ( 1170个结果
Nginx为已安装nginx动态添加模块
这里以安装第三方ngx_http_google_filter_module模块为例nginx的模块是需要重新编译nginx,而不是像apache一样配置文件引用.so下载第三方扩展模块ngx_http_google_filter_modulecd/data/software/gitclonehttps://github.com/cuber/ngx_http_google_filter_module
分类:其他好文   时间:2020-01-17 21:17:39    阅读次数:72
nginx网站限速限流配置——网站被频繁攻击,nginx上的设置limit_req和limit_conn
利用ngx_http_limit_req_module模块,可根据键值(如ip)限制每分钟的速率; limit_req_zone 用来限制单位时间内的请求数,即速率限制,采用的漏桶算法 "leaky bucket" , http://nginx.org/en/docs/http/ngx_http_l ...
分类:Web程序   时间:2020-01-12 18:26:43    阅读次数:284
这一年,从学生到职场
前言 只有光头才能变强。 文本已收录至我的GitHub精选文章,欢迎Star : "https://github.com/ZhongFuCheng3y/3y" 一年时间是真的快,上一年我还是学生,今年我已经工作半年了,这篇文章记录一下我今年发生过的一些事和感想。不知道明年写 年总结的时候再回看这篇文 ...
分类:其他好文   时间:2020-01-12 15:19:11    阅读次数:86
Nginx模块-ngx_http_mirror_module-流量复制
参考1:https://www.cnblogs.com/cjsblog/p/12163207.html Nginx流量复制 1. 需求 将生产环境的流量拷贝到预上线环境或测试环境,这样做有很多好处,比如: 可以验证功能是否正常,以及服务的性能; 用真实有效的流量请求去验证,又不用造数据,不影响线上正 ...
分类:Web程序   时间:2020-01-11 20:21:56    阅读次数:172
Nginx的location匹配规则-根据url 路径重定向到不同的IP
背景: 使用CAS登录的过程中会涉及到三次重定向,如果在同一个局域网内,是没有任何问题的,但如果涉及到跨网访问就有问题了。 解决思路: 通过Nginx对要访问的系统进行代理,把响应头中的重定向Location的地址改成外网能访问到的IP,实现跨网访问。 实现步骤: 1、安装Nginx,安装ngx_h ...
分类:Web程序   时间:2020-01-11 15:05:29    阅读次数:227
[ngx-formly] Use 3rd party Form Controls with Angular Formly / Custom type
In a real form you'll most likely want to add some 3rd party form controls. For example autocomplete fields, date-time pickers etc. In this lesson we' ...
分类:其他好文   时间:2020-01-09 21:07:29    阅读次数:75
[ngx-formly] Implement cross-cutting functionality with Angular Formly Extensions
Assume we want to add a data-cy attribute to all of our form controls. We need this as a hook to later be able to easily grab our input fields from wi ...
分类:其他好文   时间:2020-01-09 20:58:58    阅读次数:78
今天开始写学习python博客啦
安装python和pycharm 1.添加标注 #!/usr/bin/env pyhon #Author:xiaoxingxing 2.注释 ‘’’ :注释多行 :打印多行 name = "xiaoxingxing"msg = '''name2 =nameprint("My name is ",na ...
分类:编程语言   时间:2020-01-07 19:52:47    阅读次数:96
Nginx1.16访问限制
压力测试工具 yum install -y httpd-tools ab -n 100 -c 10 http://192.168.5.51/ 其中,-n表示请求数,-c表示并发数 Nginx可以通过ngx_http_limit_conn_module和ngx_http_limit_req_modul ...
分类:其他好文   时间:2020-01-07 18:30:56    阅读次数:214
Nginx代理服务——常用的配置语法
可以到官方查看所有代理的配置语法http://nginx.org/en/docs/http/ngx_http_proxy_module.html 缓存区 Syntax:proxy_buffering on | off; Default:proxy_buffering on; Context:http ...
分类:其他好文   时间:2020-01-07 18:24:02    阅读次数:76
1170条   上一页 1 ... 13 14 15 16 17 ... 117 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!