7 Einträge, 1 Seite |
QuotePEM encoded certificate and private key files may be used like this:
$ENV{HTTPS_CERT_FILE} = 'certs/notacacert.pem';
$ENV{HTTPS_KEY_FILE} = 'certs/notacakeynopass.pem';
Additionally, if you would like to tell the client where the CA file is, you may set these. These *CA* configs are ALPHA as of version .29.
$ENV{HTTPS_CA_FILE} = "some_file";
$ENV{HTTPS_CA_DIR} = "some_dir";
QuoteFür Clientseitige Zertifikate# CLIENT PKCS12 CERT SUPPORT
$ENV{HTTPS_PKCS12_FILE} = 'certs/pkcs12.pkcs12';
$ENV{HTTPS_PKCS12_PASSWORD} = 'PKCS12_PASSWORD';
1
2
3
4
5
6
-----BEGIN CERTIFICATE-----
MIIGLDCCBBSgAwMIGiMQswCQYD
VQQGEwJERTEPMA0GA1UECBMGQmF5ZXJuMR0wOZXVua2lyY2hlbiBh
...
yVPTVlV7FwBJDJx/+O9B0mBCydloV8YU+c5qX1q2AEFr6gNJNm
-----END CERTIFICATE-----
7 Einträge, 1 Seite |