Jump to content

New pages

New pages
Hide registered users | Hide bots | Show redirects

14 March 2025

  • 05:4305:43, 14 March 2025 How to setup redis on a Linux vps (hist | edit) [3,792 bytes] 21spy (talk | contribs) (Created page with "To set up Redis on a Linux VPS, follow these steps: 1. Update your system packages: ``` sudo apt update ``` 2. Install Redis: ``` sudo apt install redis ``` 3. Verify the installation: ``` redis-cli --version ``` 4. Check Redis service status: ``` sudo systemctl status redis ``` 5. If not running, start Redis: ``` sudo systemctl start redis ``` 6. Enable Redis to start on boot: ``` sudo systemctl enable redis ``...")
  • 04:1704:17, 14 March 2025 SSL Certificates (hist | edit) [4,077 bytes] 101.53.218.192 (talk) (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...") originally created as "SSL Certifiates"

13 March 2025

  • 04:1504:15, 13 March 2025 Securing Moodle on Linux (hist | edit) [1,689 bytes] 21spy (talk | contribs) (Created page with "These steps are essential for a production server containing student passwords and data. == https encryption == === Certbot and virtual host === === File permissions ==== * Reset the permissions on /var/www/html/moodle directories to read, write and execute for the webserver, read and execute for group and others * Reset the permissions on /var/www/html/moodle files to read, write for the webserver, read only for group and other == Secure database and set the root ==...")

12 March 2025