摘要: Nginx 的 access log 默认是以空格分隔的字符串形式记录的,格式如下 官方支持json格式 Specifies the log format, for example: The escape parameter (1.11.8) allows setting json or defau 阅读全文
posted @ 2018-04-03 18:54 大数据从业者FelixZh 阅读(4460) 评论(0) 推荐(0)
摘要: 关于 http://openresty.org/cn/about.html 这个开源 Web 平台主要由章亦春(agentzh)维护。在 2011 年之前曾由淘宝网赞助,在后来的 2012 ~ 2016 年间主要由美国的 CloudFlare 公司 提供支持。目前,OpenResty® 主要由 Op 阅读全文
posted @ 2018-04-03 18:35 大数据从业者FelixZh 阅读(926) 评论(0) 推荐(0)
摘要: lua-nginx-module模块地址 https://github.com/openresty/lua-nginx-module It is highly recommended to use OpenResty releases which integrate Nginx, ngx_lua, 阅读全文
posted @ 2018-04-03 16:20 大数据从业者FelixZh 阅读(11778) 评论(0) 推荐(0)
摘要: 问题分析 Nginx没有添加modules/ngx_http_stub_status_module.o模块。 问题解决 没有安装的话,可以在tar包安装编译的时候添加如下参数: # ./configure --prefix=/usr/local/nginx --with-http_stub_stat 阅读全文
posted @ 2018-04-03 16:04 大数据从业者FelixZh 阅读(9916) 评论(0) 推荐(0)
摘要: lua.c:80:31: fatal error: readline/readline.h: No such file or directory#include <readline/readline.h>^compilation terminated.make[2]: *** [lua.o] Err 阅读全文
posted @ 2018-04-03 13:35 大数据从业者FelixZh 阅读(1035) 评论(0) 推荐(0)
摘要: 官网http://www.lua.org/download.html Building Lua is implemented in pure ANSI C and compiles unmodified in all platforms that have an ANSI C compiler. L 阅读全文
posted @ 2018-04-03 13:33 大数据从业者FelixZh 阅读(700) 评论(0) 推荐(0)
摘要: nginx自1.9.0开始提供tcp/udp的反向代理功能,直到1.11.4才开始提供session日志功能。 启用stream日志配置文件 主配置文件/etc/nginx/nginx.conf增加内容: stream { log_format proxy '$remote_addr [$time_ 阅读全文
posted @ 2018-04-03 10:50 大数据从业者FelixZh 阅读(11832) 评论(1) 推荐(0)
摘要: In March, 2013 we released the first version of the “nginx web server” plug‑in for New Relic monitoring of the open source NGINX software and NGINX Pl 阅读全文
posted @ 2018-04-03 09:29 大数据从业者FelixZh 阅读(420) 评论(0) 推荐(0)
大数据从业者