Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
linux:ssl [2024/08/14 23:51] – [Linux SSL key managment] admin | linux:ssl [2024/11/09 13:13] (current) – [SSl certificates] admin | ||
---|---|---|---|
Line 6: | Line 6: | ||
* https:// | * https:// | ||
+ | ===== SSl certificates ===== | ||
+ | |||
+ | <code BASH> | ||
+ | # Example get and install https:// | ||
+ | curl --trace - https:// | ||
+ | cd ~ | ||
+ | openssl s_client -showcerts -connect www.domain.com: | ||
+ | sudo cp domain.com.crt / | ||
+ | sudo update-ca-certificates | ||
+ | </ | ||
+ | |||
+ | <code BASH> | ||
+ | openssl s_client -connect bot.ip2u.ru: | ||
+ | openssl s_client -showcerts -connect www.domain.com: | ||
+ | openssl s_client -showcerts -connect bot.ip2u.ru: | ||
+ | cat ./ | ||
+ | sudo cp ./ | ||
+ | sudo update-ca-certificates | ||
+ | openssl s_client -showcerts -connect bot.ip2u.ru: | ||
+ | openssl s_client -CAfile ./ | ||
+ | curl --verbose | ||
+ | </ | ||
===== Linux SSL key managment | ===== Linux SSL key managment | ||
* update ca certificate on ubuntu | * update ca certificate on ubuntu | ||
Line 15: | Line 37: | ||
===== Linux MTLS ===== | ===== Linux MTLS ===== | ||
+ | https:// | ||
* https:// | * https:// | ||
* https:// | * https:// | ||
+ | * https:// | ||
===== OpenSSL key manipulating ===== | ===== OpenSSL key manipulating ===== | ||