TLS unique value is present in TLS 1.2 version.
In Golang, I can get the value of the TLS unique value from the http response through the field TLS.
I'd like know how I can get it from Apache.
Is there an environment variable that already exposes it?
Should I change the apache configuration?
I have secured my EST enroll endpoint with basic auth
<Location "/.well-known/est/simpleenroll">
AuthType Basic
AuthName "estrealm"
AuthUserFile /etc/openxpki/a2sec/.htpasswd
require valid-user
</Location>
The username from the incoming http request in exposed through the Apache environment variable REMOTE_USER for instance, and I would like to get the TLS unique value as well.