Files
GoogleDriveManagement/docs/SSL-Root-CA-Certificates.md
Ross Scroggs caddda2b1c
Some checks failed
Build and test GAM / build (Win64, build, 7, VC-WIN64A, windows-2022) (push) Has been cancelled
Build and test GAM / build (aarch64, build, 2, linux-aarch64, [self-hosted linux arm64]) (push) Has been cancelled
Build and test GAM / build (aarch64, build, 4, linux-aarch64, [self-hosted linux arm64], yes) (push) Has been cancelled
Build and test GAM / build (aarch64, build, 6, darwin64-arm64, macos-14) (push) Has been cancelled
Build and test GAM / build (x86_64, build, 1, linux-x86_64, ubuntu-22.04) (push) Has been cancelled
Build and test GAM / build (x86_64, build, 3, linux-x86_64, ubuntu-22.04, yes) (push) Has been cancelled
Build and test GAM / build (x86_64, build, 5, darwin64-x86_64, macos-13) (push) Has been cancelled
Build and test GAM / build (x86_64, test, 10, ubuntu-24.04, 3.10) (push) Has been cancelled
Build and test GAM / build (x86_64, test, 11, ubuntu-24.04, 3.11) (push) Has been cancelled
Build and test GAM / build (x86_64, test, 8, ubuntu-24.04, 3.13) (push) Has been cancelled
Build and test GAM / build (x86_64, test, 9, ubuntu-24.04, 3.9) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Check for Google Root CA Updates / check-apis (push) Has been cancelled
Build and test GAM / merge (push) Has been cancelled
Build and test GAM / publish (push) Has been cancelled
Integrate Wikis - Step 1
2024-10-06 09:02:31 -07:00

1.0 KiB

!# SSL Root CA Certificates

For an overall discussion of SSL, see: https://sites.google.com/site/x509certificateusage/

Google Internet Authority, see: https://pki.google.com/index.html

Trusted Roots, see: https://pki.google.com/faq.html What roots should we trust for connecting to Google?

GAM internally uses the PEM file mentioned in the previous link; it is also included in the GAM distribution as cacerts.pem.

If your site uses a firewall that does SSL inspection/decryption, you will need a vendor specific certificate. If your vendor's certificate is in DER format, you will have to convert it to PEM format.

  • openssl x509 -inform DER -in firewallcert.crt -out firewallcert.pem -outform PEM

Copy cacerts.pem from the folder containing gam.exe/gam.py to the folder containing gam.cfg.

Append the contents of firewallcert.pem to cacerts.pem

  • Linux/Mac OS - cat firewallcert.pem >> cacerts.pem
  • Windows - type firewallcert.pem >> cacerts.pem

Tell GAM to use the new cacerts.pem:

gam config cacerts_pem cacerts.pem save