diff options
author | Gaurav Dhameeja <[email protected]> | 2020-09-17 02:36:51 +0530 |
---|---|---|
committer | GitHub <[email protected]> | 2020-09-16 15:06:51 -0600 |
commit | b01bb275b395643542ceca4fbc82bedea8e43937 (patch) | |
tree | 213f0a4c6b7fba4ccc0e3f41ea4306c695609aa6 /modules/caddyhttp/replacer.go | |
parent | 309c1fec622c08bdc68a43de64fc0777f590d309 (diff) | |
download | caddy-b01bb275b395643542ceca4fbc82bedea8e43937.tar.gz caddy-b01bb275b395643542ceca4fbc82bedea8e43937.zip |
caddyhttp: New placeholder for PEM of client certificate (#3662)
* Fix-3585: added placeholder for a PEM encoded value of the certificate
* Update modules/caddyhttp/replacer.go
Change type of block and empty headers removed
Co-authored-by: Matt Holt <[email protected]>
* fixed tests
Co-authored-by: Matt Holt <[email protected]>
Diffstat (limited to 'modules/caddyhttp/replacer.go')
-rw-r--r-- | modules/caddyhttp/replacer.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/caddyhttp/replacer.go b/modules/caddyhttp/replacer.go index 3f4a808e6..3993433a6 100644 --- a/modules/caddyhttp/replacer.go +++ b/modules/caddyhttp/replacer.go @@ -25,6 +25,7 @@ import ( "crypto/tls" "crypto/x509" "encoding/asn1" + "encoding/pem" "fmt" "io" "io/ioutil" @@ -343,6 +344,9 @@ func getReqTLSReplacement(req *http.Request, key string) (interface{}, bool) { return cert.SerialNumber, true case "client.subject": return cert.Subject, true + case "client.certificate_pem": + block := pem.Block{Type: "CERTIFICATE", Bytes: cert.Raw} + return pem.EncodeToMemory(&block), true default: return nil, false } |