Jump to content

Main public logs

Combined display of all available logs of KeenWiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 04:17, 14 March 2025 101.53.218.192 talk created page SSL Certifiates (Created page with "## Step-by-Step Guide to Using SSL Certificates on Linux and Windows ### **Linux** #### 1. Creating a Self-Signed SSL Certificate - Open your VPS console and log in using SSH. - Generate a private key: ```bash openssl genrsa -des3 -out self-ssl.key 2048 ``` - Create a Certificate Signing Request (CSR): ```bash openssl req -new -key self-ssl.key -out self-ssl.csr ``` - Generate the SSL certificate: ```bash openssl x509...")