Commit dbc9a388 authored by focus's avatar focus

update

parent a95f2cf4
......@@ -12,11 +12,28 @@ http {
charset UTF-8;
include ./mime.types;
# $remote_addr, $http_x_forwarded_for 记录客户端IP地址
# $remote_user 记录客户端用户名称
# $request 记录请求的URL和HTTP协议
# $status 记录请求状态
# $body_bytes_sent 发送给客户端的字节数,不包括响应头的大小; 该变量与Apache模块mod_log_config里的“%B”参数兼容。
# $bytes_sent 发送给客户端的总字节数。
# $connection 连接的序列号。
# $connection_requests 当前通过一个连接获得的请求数量。
# $msec 日志写入时间。单位为秒,精度是毫秒。
# $pipe 如果请求是通过HTTP流水线(pipelined)发送,pipe值为“p”,否则为“.”。
# $http_referer 记录从哪个页面链接访问过来的
# $http_user_agent 记录客户端浏览器相关信息
# $request_length 请求的长度(包括请求行,请求头和请求正文)。
# $request_time 请求处理时间,单位为秒,精度毫秒; 从读入客户端的第一个字节开始,直到把最后一个字符发送给客户端后进行日志写入为止。
# $time_iso8601 ISO8601标准格式下的本地时间。
# $time_local 通用日志格式下的本地时间。
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log ./logs/access.log main;
error_log ./logs/error.log info;
access_log syslog:server=v5-infra-logstash-dev:5005,facility=local7,tag=nginx,severity=info;
error_log syslog:server=v5-infra-logstash-dev:5005,facility=local7,tag=nginx,severity=error;
sendfile on;
keepalive_timeout 65;
......@@ -37,7 +54,7 @@ http {
lua_shared_dict monitor 10m; # used for url monitor statistic, see plugin: monitor
lua_shared_dict rate_limit 10m; # used for rate limiting count, see plugin: rate_limiting
init_by_lua_block {
local orange = require("orange.orange")
......@@ -120,9 +137,9 @@ http {
server {
listen 8001;
server_name localhost 127.0.0.1;
access_log ./logs/default_upstream_access.log main;
error_log ./logs/default_upstream_error.log;
# access_log ./logs/default_upstream_access.log main;
# error_log ./logs/default_upstream_error.log;
location / {
content_by_lua_block {
ngx.status = 404
......@@ -136,8 +153,8 @@ http {
server {
listen 9999;
#server_name localhost;
access_log ./logs/dashboard_access.log main;
error_log ./logs/dashboard_error.log info;
# access_log ./logs/dashboard_access.log main;
# error_log ./logs/dashboard_error.log info;
location = /favicon.ico {
log_not_found off;
......@@ -167,8 +184,8 @@ http {
server {
listen 7777;
#server_name localhost;
access_log ./logs/api_access.log main;
error_log ./logs/api_error.log info;
# access_log ./logs/api_access.log main;
# error_log ./logs/api_error.log info;
location = /favicon.ico {
log_not_found off;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment