Difference between revisions of "Certificate Authority Custom"

From UVOO Tech Wiki
Jump to navigation Jump to search
(Created page with "# Debian ``` curl https://ccadb.my.salesforce-sites.com/mozilla/IncludedRootsPEMTxt?TrustBitsInclude=Websites -o /etc/ssl/certs/ca-certificates.crt ``` Then mount the volume...")
 
Line 14: Line 14:
  
 
  /etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem
 
  /etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem
 +
 +
 +
 +
# Windows
 +
```
 +
cd c:\certs\
 +
certutil.exe -generateSSTFromWU roots.sst
 +
$sst = ( Get-ChildItem -Path C:\certs\roots.sst )
 +
$sst = ( Get-ChildItem roots.sst )
 +
$sst| Import-Certificate -CertStoreLocation Cert:\LocalMachine\Root
 +
```

Revision as of 22:53, 5 December 2023

Debian

curl https://ccadb.my.salesforce-sites.com/mozilla/IncludedRootsPEMTxt?TrustBitsInclude=Websites -o /etc/ssl/certs/ca-certificates.crt

Then mount the volume to

/etc/ssl/certs/ca-certificates.crt

extraVolumeMounts: [] extraVolumes: []

/etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem

Windows

cd c:\certs\
certutil.exe -generateSSTFromWU roots.sst
$sst = ( Get-ChildItem -Path C:\certs\roots.sst )
$sst = ( Get-ChildItem roots.sst )
$sst| Import-Certificate -CertStoreLocation Cert:\LocalMachine\Root