Proxy settings
Proxy settings using extra-conf.json Configure proxy settings required for your network environment using extra-conf.json
. This is necessary if DigiCert® Trust Assistant cannot automatically resolve the system proxy settings by default. For example, DigiCert Trust Assistant cannot retrieve authentication information, such as the username and password, because this information is concealed within the operating system. For more information about extra-conf.json
file, refer to Configure via GPO or Device Management solution.
Nota
Since it is not realistic to create extra-conf.json for each user, delivering authentication information is limited to the one that is shareable for all users.
To obtain proxy settings for extra-conf.json
, you can use Settings UI to generate the configuration.
Configure Proxy settings in DigiCert Trust Assistant UI. Refer to Settings for details.
Select Export proxy settings at the bottom of the Settings page to generate the
extra-conf.json
file based on the current configured values.Save the file to your desired location.
The following shows the JSON composition of the proxy settings.
{ "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" } } } }