Beispiele für die Server-Konfiguration

NGINX

server {

    listen 443 ssl default_server;
    # ... existing SSL configuration for server authentication ...

    ssl_verify_client on;
    ssl_client_certificate /path/to/DigiCert_Global_Root_CA.pem;
    ssl_verify_depth 2;

        # ... existing location configuration ...
    }
}

Weitere Informationen finden Sie in der NGiNX-Dokumentation für ngx_http_ssl_module.

Apache

Listen 443
<VirtualHost *:443>
    # ... existing SSL configuration for server authentication ...

    SSLVerifyClient require
    SSLCACertificateFile "/path/to/DigiCert_Global_Root_CA.pem"
    SSLVerifyDepth 2
</VirtualHost>

<Directory /var/www/>
    Require expr "%{SSL_CLIENT_S_DN_CN} == <>"

    # ... existing directory configuration ...
</Directory>

Weitere Informationen finden Sie unter

Zuordnung von Zertifikaten zu Umgebungen

WF-UmgebungAllgemeiner ZertifikatnameZertifikatbetreff (DN)
Produktion*.prod.eventsubscriptions.workfront.comsubject= /C=US/ST=Utah/L=LEHI/O=Workfront, Inc./CN=*.prod.eventsubscriptions.workfront.com
Vorschau*.preview.eventsubscriptions.workfront.comsubject= /C=US/ST=Utah/L=LEHI/O=Workfront, Inc./CN=*.preview.eventsubscriptions.workfront.com
Sandbox 1*.sandbox.eventsubscriptions.workfront.comsubject= /C=US/ST=Utah/L=LEHI/O=Workfront, Inc./CN=*.sandbox.eventsubscriptions.workfront.com
Sandbox 2*.sandbox.eventsubscriptions.workfront.comsubject= /C=US/ST=Utah/L=LEHI/O=Workfront, Inc./CN=*.sandbox.eventsubscriptions.workfront.com

Herunterladen von Zertifikaten

Klicken Sie auf die folgenden Links, um die Client-Zertifikate herunterzuladen.

NOTE
Sie können dasselbe Client-Zertifikat für beide Sandbox-Umgebungen verwenden.
Vorherige SeiteRessourcenfelder für Ereignisabonnements
Nächste SeiteAngeben einer API-Version in Integrationen

Workfront