Removed mklink for git

This commit is contained in:
2024-11-06 12:39:13 -07:00
parent a6071a4073
commit 11bb8c848c
263 changed files with 19951 additions and 1508 deletions

View File

@ -1,5 +1,7 @@
---
type: "note"
created: 2024-05-19T06:33:47.209Z
type: note
updated: 2024-07-27T04:23:39.000Z
---
# SSL/TLS Certificates
@ -129,3 +131,17 @@ The exact steps vary device-to-device, but here is a generalised guide:
5. Locate the certificate file `ca.pem` on your SD Card/Internal Storage using the file manager.
6. Select to load it.
7. Done!
## Download
- [redirecting-error-command-prompt](https://learn.microsoft.com/en-us/troubleshoot/developer/visualstudio/cpp/language-compilers/redirecting-error-command-prompt)
```bash
# </dev/null openssl s_client -connect $HOST:$PORTNUMBER -servername $SERVERNAME \
# | openssl x509 > /tmp/$SERVERNAME.cert
"C:\Program Files\Git\mingw64\bin\openssl.exe" s_client -connect gitea.ddns.net:443 -servername gitea.ddns.net > gitea.ddns.net.msg 2> gitea.ddns.net.err
^C
"C:\Program Files\Git\mingw64\bin\openssl.exe" x509 -in gitea.ddns.net.msg > gitea.ddns.net.cert
certutil -addstore "Root" gitea.ddns.net.cert
certutil -store root | findstr gitea.ddns.net
```