mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-09-29 19:24:29 +03:00
{dis|en}able-server-context-logging: Option to disable logging of server info (log producer, sanitized objects, ...) in audit log.
This commit is contained in:
committed by
Felipe Zimmerle
parent
da995bb636
commit
70322304f2
17
configure.ac
17
configure.ac
@@ -517,6 +517,21 @@ AC_ARG_ENABLE(stopwatch-logging,
|
||||
log_stopwatch=''
|
||||
])
|
||||
|
||||
# Disable logging of server context
|
||||
AC_ARG_ENABLE(server-context-logging,
|
||||
AS_HELP_STRING([--enable-server-context-logging],
|
||||
[Enable logging of server info (log producer, sanitized objects, ...) in audit log when log level < 9. This is the default]),
|
||||
[
|
||||
if test "$enableval" != "no"; then
|
||||
log_server_context=
|
||||
else
|
||||
log_server_context="-DLOG_NO_SERVER_CONTEXT"
|
||||
fi
|
||||
],
|
||||
[
|
||||
log_server_context=''
|
||||
])
|
||||
|
||||
# Ignore configure errors
|
||||
AC_ARG_ENABLE(errors,
|
||||
AS_HELP_STRING([--disable-errors],
|
||||
@@ -767,7 +782,7 @@ else
|
||||
fi
|
||||
fi
|
||||
|
||||
MODSEC_EXTRA_CFLAGS="$pcre_study $pcre_match_limit $pcre_match_limit_recursion $pcre_jit $request_early $htaccess_config $lua_cache $debug_conf $debug_cache $debug_acmp $debug_mem $perf_meas $modsec_api $cpu_type $unique_id $log_filename $log_server $log_collection_delete_problem $log_dechunk $log_stopwatch $log_handler"
|
||||
MODSEC_EXTRA_CFLAGS="$pcre_study $pcre_match_limit $pcre_match_limit_recursion $pcre_jit $request_early $htaccess_config $lua_cache $debug_conf $debug_cache $debug_acmp $debug_mem $perf_meas $modsec_api $cpu_type $unique_id $log_filename $log_server $log_collection_delete_problem $log_dechunk $log_stopwatch $log_handler $log_server_contex"
|
||||
|
||||
APXS_WRAPPER=build/apxs-wrapper
|
||||
APXS_EXTRA_CFLAGS=""
|
||||
|
Reference in New Issue
Block a user