SSL: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

17 May 2025

  • curprev 09:4409:44, 17 May 2025Pverha10 talk contribs 516 bytes +516 Created page with "=Self Signed Certificate= Easiest way to create a self-signed certificate for domain.com: <pre> openssl req -subj "/CN=domain.com" -new -newkey rsa:4096 -days 3650 -nodes -x509 -sha512 -keyout private.key -out public.key </pre> If you want to add more domain names, just add more /CN=example.com between the double quotes. The last common name will be the main common name.<br/> Remember: keep your private.key private. Change rights to the file accordingly so that only th..."