nginx

How To Run Nginx in a Docker Container on Ubuntu 22.04 — step-by-step Docker tutorial on Progressive Robot

How To Run Nginx in a Docker Container on Ubuntu 22.04

By containerizing Nginx, it is possible to cut down on some system administration overhead. For instance, you won’t have to manage Nginx through a package manager or build it from source. The Docker container allows you to replace the whole container when a new version of Nginx is released. This way, you only need to maintain the Nginx configuration file and your content.

Read more
How To Set Up a Node.js Application for Production on Ubuntu 18.04 — step-by-step Linux tutorial on Progressive Robot

How To Set Up a Node.js Application for Production on Ubuntu 18.04

Node.js is an open-source JavaScript runtime environment for building server-side and networking applications. Node.js applications can be run at the command line but this guide focuses on running them as a service using PM2, so that they will automatically restart on reboot or failure, and can safely be used in a production environment.

Read more
How To Set Up a Two Node LEPP Stack on CentOS 7 — step-by-step Linux tutorial on Progressive Robot

How To Set Up a Two Node LEPP Stack on CentOS 7

This tutorial covers creating a simple web application on a two-tier CentOS 7 architecture using a “ground-up” approach. I.e. creating the a database tier first, then the web server. The site will be powered by an Nginx web server running PHP code that talks to a PostgreSQL database. We will call this configuration a LEPP (Linux, Nginx, PHP, PostgreSQL) stack.

Read more
How To Set Up Django with Postgres, Nginx, and Gunicorn on Debian 11 — step-by-step Linux tutorial on Progressive Robot

How To Set Up Django with Postgres, Nginx, and Gunicorn on Debian 11

Django is a powerful web framework that can help you get your Python application or website off the ground. Django includes a simplified development server for testing your code locally, but for anything even slightly production related, a more secure and powerful web server like Nginx is a major asset to your stack.

Read more
CHAT