skip to Main Content

I have tried modifying the httpd.conf, but none of them yield the result.

2

Answers


  1. You can enable dumpio logging to log HTTP request and response header.

    DumpIOInput On
    DumpIOOutput On
    LogLevel dumpio:trace8
    

    You can refer https://httpd.apache.org/docs/2.4/mod/mod_dumpio.html

    Login or Signup to reply.
  2. The solution reported by @Pandurang is almost correct.
    the configuration is changed as below:

    DumpIOInput On
    DumpIOOutput On
    LogLevel dumpio:trace8
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search