Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
piplus-backend-v5-server-dockers
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
piplus-backend-v5
piplus-backend-v5-server-dockers
Commits
dbc9a388
Commit
dbc9a388
authored
Feb 21, 2017
by
focus
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
a95f2cf4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
10 deletions
+27
-10
nginx.conf
piplus-backend-v5-orange-docker/conf-dev/nginx.conf
+27
-10
No files found.
piplus-backend-v5-orange-docker/conf-dev/nginx.conf
View file @
dbc9a388
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment