Main public logs
Jump to navigation
Jump to search
Combined display of all available logs of Chorke Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 09:18, 29 May 2025 Shahed talk contribs created page Security/Certificate/TLS (Created page with "==Disable » TLSv1 » TLSv1.1== ==Enable » TLSv1.2 » TLSv1.3== ===Enable » TLSv1.2 » TLSv1.3 » Nginx=== ===Enable » TLSv1.2 » TLSv1.3 » Apache=== ===Enable » TLSv1.2 » TLSv1.3 » HAProxy=== <syntaxhighlight lang="bash"> cd /etc/letsencrypt/live/;for d in *;do if [ -d "${d}" ];then cat ${d}/{fullchain,privkey}.pem|tee ${d}.pem >/dev/null;fi;done SSL_CRT_LIST="$(cd /etc/letsencrypt/live/;for d in *;do if [ -d "${d}" ];then printf "crt ${PWD}/${d}.pem ";fi;done)"...")