Keep Server Online
If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.
or
A donation makes a contribution towards the costs, the time and effort that's going in this site and building.
Thank You! Steffen
Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
| |
|
Topic: Secure Aapche Server |
|
Author |
|
Gumball601
Joined: 02 Dec 2016 Posts: 1 Location: United States, Bowie
|
Posted: Tue 06 Dec '16 16:54 Post subject: Secure Aapche Server |
|
|
I have a Secure apache 2.2.15 server on a Red Hat Enterprise Linux 6.8 Operating system. I have a PHP developer that is unable to obtain SSL_Client_x (SSL_CLIENT_S_DN_C, SSL_CLIENT_S_DN_CN, SSL_CLIENT_SAN_Email_0, etc.). What configuration files (ssl.conf, http.conf, etc.) must I edit to obtain this information? |
|
Back to top |
|
James Blond Moderator
Joined: 19 Jan 2006 Posts: 7373 Location: Germany, Next to Hamburg
|
Posted: Sat 10 Dec '16 13:04 Post subject: |
|
|
That info should be in $_SERVER
e.g.
Code: | $_SERVER['SSL_CLIENT_S_DN_CN'] |
if not in your apache config there should be StdEnvVars enabled for SSL.
Code: | SSLOptions StdEnvVars |
Maybe also ExportCertDatam but that can lead to a security problem.
For more details see http://httpd.apache.org/docs/2.2/mod/mod_ssl.html#ssloptions
if you still have a question please ask again. |
|
Back to top |
|
|
|
|
|
|