Is it possible to log clients' HPKP errors in Apache? It would seem this would be logged in in the error_log
or ssl_request_log
, but even when I set LogLevel debug
, I don't see anything regarding pinning errors. Am I missing something?
Is it possible to log clients' HPKP errors in Apache? It would seem this would be logged in in the error_log
or ssl_request_log
, but even when I set LogLevel debug
, I don't see anything regarding pinning errors. Am I missing something?
Use
report-uri
:Use this in Apache:
where the Perl script simply redirects the POST data to a log file:
For HPKP,
http://example.site/pkp-report.pl
must be different from the HTTPS site that uses HPKP. For CSP reporting, it can be the same.