Can a smart card host a PHP site in IIS 6?

I have been doing some research in the last couple of days and have not yet found a solution. I have seen sentences that include the php function Exec () to call an external application to handle this. I was looking for a tutorial similar to this for a PHP site - http://securitythroughabsurdity.com/2007/04/implementing-smart-card-authentication.html . Any advice or recommendations on this matter would be greatly appreciated.

Thanks Jerry

Edit - I checked this post How to make the php application require smart card authentication , but this does not apply to my purpose. Can I use SSLVerifyClient with a smart card?

+3
source share
1 answer

We often use smart card solutions in Estonia due to the support of national identifiers in many places. I think you are a little confused - you don't need exec (). You need to configure a web server (in this case, IIS) to request a client for a certificate. This has nothing to do with PHP. This can be done based on a path, subdomain, or the like, and it can be optional or required. For example, we often set up a subdomain a la http: //id.foobar . - . " " Google . . , - . - . . PHP . . , Googling SSL_CLIENT_S_DN. , - Apache. IIS , , .

+1
source

All Articles