我是靠谱客的博主 灵巧秀发,最近开发中收集的这篇文章主要介绍Nginx 配置日志打印--HTTP报文 ,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

http {
    include       mime.types;
    default_type  application/octet-stream;

    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent $request_body "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  logs/access.log  main;
 }
   以上为全局配置,打印所有请求的报文,与可按如下配置,只获取某个请求路径下的HTTP报文:
http {
    include       mime.types;
    default_type  application/octet-stream;

    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent $request_body "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    
    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;
    }
server {
        listen       8080;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location /mypath {
            access_log  logs/access.log  main;
        }
}    
 

 

最后

以上就是灵巧秀发为你收集整理的Nginx 配置日志打印--HTTP报文 的全部内容,希望文章能够帮你解决Nginx 配置日志打印--HTTP报文 所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(52)

评论列表共有 0 条评论

立即
投稿
返回
顶部