Proxy

How to Deploy a Node.js Application with PM2 on RHEL 8 — step-by-step RHEL 8 tutorial on Progressive Robot

How to Deploy a Node.js Application with PM2 on RHEL 8

PM2 is a production-grade process manager for Node.js applications that handles automatic restarts on crashes, log aggregation, clustering, and startup script generation for Linux init systems including systemd. Unlike running Node.js directly with node app.js, PM2 keeps your application alive across failures and server reboots without writing custom systemd unit files for every project. On […]

Read more
How to Manage Node.js Versions with NVM on RHEL 8 — step-by-step RHEL 8 tutorial on Progressive Robot

How to Manage Node.js Versions with NVM on RHEL 8

NVM (Node Version Manager) is a shell script that lets you install and switch between multiple Node.js versions on the same machine without requiring root access or affecting system-wide packages. This is invaluable when you work on projects that require different Node.js versions simultaneously, or when you need to test your application against multiple runtimes. […]

Read more
How to Install Node.js on RHEL 8 — step-by-step RHEL 8 tutorial on Progressive Robot

How to Install Node.js on RHEL 8

Node.js is a JavaScript runtime built on Chrome’s V8 engine, widely used for building fast, scalable network applications, REST APIs, and real-time services. RHEL 8 provides Node.js through two channels: the built-in AppStream module system and the NodeSource third-party repository, which typically offers newer LTS releases. This tutorial covers both installation methods, verifying the installation, […]

Read more
How to Install Jupyter Notebook on RHEL 8 — step-by-step RHEL 8 tutorial on Progressive Robot

How to Install Jupyter Notebook on RHEL 8

Jupyter Notebook is an interactive computing environment that lets you combine live code, equations, visualizations, and narrative text in a single document. On RHEL 8, the recommended approach is to install Jupyter inside a Python virtual environment to keep the system Python clean. This tutorial covers installation, password protection, systemd service setup, and configuring Nginx […]

Read more
How to Deploy a Flask Application with Gunicorn and Nginx on RHEL 8 — step-by-step RHEL 8 tutorial on Progressive Robot

How to Deploy a Flask Application with Gunicorn and Nginx on RHEL 8

Flask is a lightweight Python web framework well-suited for building APIs and web applications on RHEL 8. Gunicorn acts as the production-grade WSGI server that runs your Flask app, while Nginx sits in front as a reverse proxy handling incoming traffic. This guide walks through deploying a Flask application on RHEL 8 using a Python […]

Read more
How to Deploy a Django Application with Gunicorn and Nginx on RHEL 8 — step-by-step RHEL 8 tutorial on Progressive Robot

How to Deploy a Django Application with Gunicorn and Nginx on RHEL 8

Django is one of the most popular Python web frameworks, and deploying it in production requires more than the built-in development server. The recommended production stack on RHEL 8 pairs Django with Gunicorn as the WSGI application server and Nginx as a reverse proxy that handles static files, TLS termination, and connection management. This tutorial […]

Read more
How to Install Redis on RHEL 8 — step-by-step RHEL 8 tutorial on Progressive Robot

How to Install Redis on RHEL 8

Redis is an in-memory data structure store used as a database, cache, and message broker, capable of delivering sub-millisecond response times for millions of operations per second. On RHEL 8, Redis is available through the AppStream module system, giving you a straightforward installation path without third-party repositories. This guide covers installing Redis 6 via AppStream […]

Read more
How to Set Up Nginx as a Reverse Proxy on Debian 12 — step-by-step Debian 12 tutorial on Progressive Robot

How to Set Up Nginx as a Reverse Proxy on Debian 12

Introduction Debian 12 Bookworm is built around the ethos of stability and free software. Setting up set up nginx as a reverse proxy on debian 12 on Bookworm leverages the same proven Debian packaging system that powers millions of servers worldwide, while benefiting from the latest upstream releases included in the Bookworm freeze. Follow each […]

Read more
How to Configure Nginx WebSocket Proxying on RHEL 8 — step-by-step RHEL 8 tutorial on Progressive Robot

How to Configure Nginx WebSocket Proxying on RHEL 8

WebSockets provide a persistent, full-duplex communication channel over a single TCP connection, making them essential for real-time applications such as chat systems, live dashboards, and collaborative tools. Nginx can act as a reverse proxy that transparently upgrades incoming HTTP connections to the WebSocket protocol and forwards them to a backend application server. This tutorial walks […]

Read more
How to Set Up a LAMP Stack on RHEL 8 — step-by-step RHEL 8 tutorial on Progressive Robot

How to Set Up a LAMP Stack on RHEL 8

A LAMP stack — Linux, Apache, MariaDB, and PHP — is one of the most widely deployed web server configurations in enterprise environments. RHEL 8 ships with the tools needed to install and configure each component using dnf and its module system. This tutorial walks you through installing and securing a fully functional LAMP stack […]

Read more
CHAT