Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
tools:certificates [2024/11/01 10:10] – [Python] certifi will | tools:certificates [2025/04/25 16:42] (current) – [Terminal] will | ||
---|---|---|---|
Line 21: | Line 21: | ||
To allow UPMC's cert in the SSL chain on debian, run: | To allow UPMC's cert in the SSL chain on debian, run: | ||
< | < | ||
- | | + | # as root |
- | cd / | + | [ $(id -u) -ne 0 ] && echo "with sudo" && exit 1 |
- | cert_loc=http:// | + | |
- | for crt in UPMC-CA23 UPMC-CA20 UPMC-ROOT-CA; | + | cd / |
- | | + | cert_loc=https:// |
- | | + | # 20250313 - added "UPMC ROOT CA 2023" via Nathan Safran |
- | | + | for crt in UPMC-CA23 UPMC-CA20 UPMC-ROOT-CA |
- | done | + | ! wget " |
- | update-ca-certificates | + | |
+ | | ||
+ | done | ||
+ | update-ca-certificates | ||
</ | </ | ||