DeveloperBreeze

Web Development Programming Tutorials, Guides & Best Practices

Explore 42+ expertly crafted web development tutorials, components, and code examples. Stay productive and build faster with proven implementation strategies and design patterns from DeveloperBreeze.

How to Install and Configure Apache on Ubuntu

Tutorial October 21, 2024
bash

You can view the logs using the cat or tail command:

sudo tail -f /var/log/apache2/error.log

How to Create SSL for a Website on Ubuntu

Tutorial October 21, 2024
bash

Add the following lines under your server block to enhance security:

ssl_protocols TLSv1.2 TLSv1.3;
ssl_prefer_server_ciphers on;
ssl_ciphers "ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384";
ssl_session_timeout 1d;
ssl_session_cache shared:SSL:10m;
ssl_stapling on;
ssl_stapling_verify on;

Building Progressive Web Apps (PWAs) with Modern APIs

Tutorial August 05, 2024
json bash

mkdir my-pwa
cd my-pwa

Create the basic file structure: