Internal Error 500 Apache, but nothing in the logs?

后端 未结 11 599
失恋的感觉
失恋的感觉 2020-11-27 14:36

I\'m getting 500 Internal Server errors when I try to make an HTTP POST to a specific address in my app. I\'ve looked into the server logs in the custom log directory speci

11条回答
  •  一个人的身影
    2020-11-27 15:09

    I just ran into this and it was due to a mod_authnz_ldap misconfiguration in my .htaccess file. Absolutely nothing was being logged, but I kept getting a 500 error.

    If you run into this particular issue, you can change the log level of mod_authnz_ldap like so:

    LogLevel warn authnz_ldap_module:debug
    

    That will use a log level of debug for mod_authnz_ldap but warn for everything else (https://httpd.apache.org/docs/2.4/en/mod/core.html#loglevel).

提交回复
热议问题