Няма описание

Fabian Peter Hammerle ce6e8703d3 dependencies fixed: fphammerle/helpers is required in production преди 8 години
migrations 658639c376 Subject construct: expect identity instead of identity id преди 8 години
tests a4251c4324 Authenticator: added getClientCertSubjectDistinguishedName() преди 8 години
.gitignore ab9451933e init dummy преди 8 години
.travis.yml 15e79ea2d3 phpunit: use executable in vendor/bin преди 8 години
Authenticator.php a4251c4324 Authenticator: added getClientCertSubjectDistinguishedName() преди 8 години
LICENSE ab9451933e init dummy преди 8 години
README.md 14b1cb0fe6 readme: added migration command преди 8 години
Subject.php b9a991c9fb Subject findByDistinguishedName(): added missing static keyword преди 8 години
composer.json ce6e8703d3 dependencies fixed: fphammerle/helpers is required in production преди 8 години
phpunit.xml ab9451933e init dummy преди 8 години

README.md

PHP version Build Status

yii2 extension for automatic login via TLS/SSL/HTTPS client certificates

Setup

1. Configure Webserver

apache

<VirtualHost example.hammerle.me:443>
    # ...

    SSLEngine on
    SSLCertificateFile /etc/somewhere/example-server-cert.pem
    SSLCertificateKeyFile /etc/restricted/example-server-key.pem

    SSLVerifyClient optional
    SSLVerifyDepth 1
    SSLCACertificateFile /etc/somewhere/example-client-cert-ca.pem
    SSLOptions +StdEnvVars
</VirtualHost>

2. Install Extension

composer require fphammerle/yii2-client-cert-auth

3. Create Table

./yii migrate --migrationPath=./vendor/fphammerle/yii2-client-cert-auth/migrations

4. Enable Extension in Yii's Application Config

$config = [
    // ...
    'bootstrap' => ['clientCertAuth'],
    'components' => [
        // ...
        'clientCertAuth' => \fphammerle\yii2\auth\clientcert\Authenticator::className(),
    ],
    // ...
];