1

I want to set the value of SSL_CLIENT_S_DN_CN on the RequestHeader in apache, the below does not work...

  SSLOptions +StdEnvVars
  SSLUserName SSL_CLIENT_S_DN_CN

  ProxyPass        http://x.x.x.x/
  ProxyPassReverse http://x.x.x.x/
  Header add X-FILTER-Username %{SSL_CLIENT_S_DN_CN}
  RequestHeader set X-FILTER-Username %{SSL_CLIENT_S_DN_CN}

any idea how it can be done?

1 Answer 1

1

managed to solve using this

  Header add X-RStudio-Username "%{SSL_CLIENT_S_DN_CN}s"
  RequestHeader set X-FILTER-Username "%{SSL_CLIENT_S_DN_CN}s"
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.