Skip to main content

プロキシ設定

extra-conf.json を使用したプロキシ設定では、extra-conf.jsonを使用してネットワーク環境に必要なプロキシ設定を構成します。これは、DigiCert​​®​​ Trust Assistant がデフォルトでシステムのプロキシ設定を自動的に解決できない場合に必要です。たとえば、DigiCert Trust Assistant は、ユーザー名やパスワードなどの認証情報を取得できません。これは、この情報がオペレーティングシステム内で隠されているためです。extra-conf.json ファイルの詳細については、「Configure via GPO or Device Management solution」を参照してください。

注記

extra-conf.json をユーザーごとに作成することは現実的ではないため、認証情報の配布は全ユーザーで共有可能なものに限定されます。

extra-conf.json のプロキシ設定を取得するには、[設定]UI を使用して構成を生成できます。

  1. DigiCert Trust Assistant の UI で[プロキシ]設定を構成します。詳細については、「Settings」を参照してください。

  2. [設定]ページの下部にある[プロキシ設定のエクスポート]を選択し、現在の設定値に基づく extra-conf.json ファイルを生成します。

  3. 希望の場所にファイルを保存します。

プロキシ設定の JSON 構成を以下に示します。

{
  "setting": {
    "proxySettings": {
      "type": "",          // Possible values: "system" (system proxy) / "custom" (custom proxy configuration)
      "authInfo": {
        "type": "",        // Possible values: "none" (no authentication) / "basic" (basic authentication)
        "userName": "",    // Proxy authentication username (if applicable)
        "password": "",    // Proxy password (encrypted by DigiCert Trust Assistant if using "basic" auth)
        "passKey": ""      // Passkey used for decryption, along with other parameters in DigiCert Trust Assistant
      },
      "customProxy": {
        "type": "",        // Possible values: "http" / "https" / "pac" (for PAC file configuration)
        "server": "",      // The address of the proxy server (e.g., "proxy.example.com","10.100.100.1")
        "port": "",        // The port number the proxy server listens on (e.g., "3128")
        "pacFileURL": ""   // URL to the PAC file if using "pac"
      }
    }
  }
}