adding logging

Can we add this to log the requests in the error.log?
It can be filtered after with the rsyslog.  (https://www.thegeekdiary.com/etc-rsyslog-conf-setup-a-filter-to-discard-or-redirect-messages/)
This commit is contained in:
benchea dan 2022-09-16 15:20:14 +03:00 committed by GitHub
parent 40d2173fbd
commit 330bafa33c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -345,12 +345,14 @@ static ngx_int_t ngx_http_js_challenge_handler(ngx_http_request_t *r) {
int ret = get_cookie(r, &cookie_name, &response);
if (ret < 0) {
return serve_challenge(r, challenge, conf->html, conf->title);
ngx_log_error(NGX_LOG_ERR, r->connection->log, 0, "[ js challenge log ] sending challenger... ");
return serve_challenge(r, challenge, conf->html, conf->title);
}
get_challenge_string(bucket, addr, conf->secret, challenge);
if (verify_response(response, challenge) != 0) {
ngx_log_error(NGX_LOG_ERR, r->connection->log, 0, "[ js challenge log ] wrong/expired cookie (res=%s), sending challenger...", response.data);
return serve_challenge(r, challenge, conf->html, conf->title);
}