I have a client certificate which has non English characters in the subject, when I use the attribute $ssl_client_s_dn of ngx_http_ssl_module the value is escaped twice.
real value = "L=D'UNCONGÉ"
the \xC3 is encoded again to get \x5CC3 ,I need to avoid this
actual value = "L=D'UNCONG\x5CC3\x5C89"
expected value = "L=D'UNCONG\xC3\x89"
can someone please advise me on what I did wrong, How can I avoid this.