Nginx 打印body体内容(转载)
【摘要】
#user nobody;worker_processes 1; events { worker_connections 1024;} http { include mime.types; default_type application/octet-stream; lua_package...
-
#user nobody;
-
worker_processes 1;
-
-
events {
-
worker_connections 1024;
-
}
-
-
-
http {
-
include mime.types;
-
default_type application/octet-stream;
-
-
lua_package_path "/usr/local/nginx/conf/waf/?.lua";
-
lua_shared_dict limit 10m;
-
init_by_lua_file /usr/local/nginx/conf/waf/init.lua;
-
access_by_lua_file /usr/local/nginx/conf/waf/waf.lua;
-
-
log_format main '$remote_addr - $remote_user [$time_local] '
-
'"$request" $status $body_bytes_sent '
-
'"$http_referer" "$http_user_agent" $request_time req_body:"$request_body"'
-
' resp_body:"$resp_body" resp_header:"$resp_header"';
-
access_log logs/access.log main;
-
-
sendfile on;
-
-
server {
-
listen 80;
-
server_name localhost;
-
-
location / {
-
root html;
-
index index.html index.htm;
-
}
-
-
error_page 500 502 503 504 /50
文章来源: blog.csdn.net,作者:隔壁老瓦,版权归原作者所有,如需转载,请联系作者。
原文链接:blog.csdn.net/wxb880114/article/details/108451387
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)