Andrew Dassandrewdass.hashnode.dev·Aug 26, 2023How to Run GunicornOverview This article will explain how to run Gunicorn (1) to deploy a Flask application. What is Gunicorn Gunicorn is a Python WSGI HTTP Server for UNIX. It is compatible with many web frameworks. Gunicorn only runs on UNIX or Linux, therefore for o...DiscussGunicorn
Vinit Guptathevinitgupta.hashnode.dev·Aug 17, 2023Caching explained in <5 minutesCaching is a data storage technique that plays an essential role in the world for designing fast and scalable systems. A cache stores and retrieves data quickly for future use. This enables faster response time and decreases the load on other parts...Discuss100 Days of Learning caching
Idris Yakubblog.driiis.com·Aug 16, 2023The Journey of a Web Request: From Typing "https://www.google.com" to Loading the PageIntroduction: In today's interconnected world, browsing the web has become an integral part of our daily lives. Have you ever wondered what happens behind the scenes when you type a URL like "https://www.google.com" into your browser and hit Enter? T...DiscussWeb Architectures,
Ritwik Mathritwikmath.hashnode.dev·Aug 5, 2023Navigating Nginx: Exploring the Structure and Functions of Each Section in Your nginx.conf FileConfiguration Terminology Nginx operates with two primary configuration elements: directives and contexts. Directives represent specific configuration options, each serving a particular purpose. These directives are organized within contexts, also kn...Discuss·1 likenginx
Edvin Dsouzaedvindsouza.com·Aug 2, 2023Containerizing a Simple Web Server with DockerIn this blog, we will demonstrate how to containerize a simple web server application using Docker. We will use Nginx as our web server and create a Docker image that runs the server inside a container. We'll then make changes to the application code...DiscussDocker
Ocheche Ntonasaroocheche.hashnode.dev·Jul 29, 2023Cloud Computing Simplified: FAQs for Cloud Newbies.Introduction As our world of technology continues to evolve, cloud computing is now reshaping how businesses and individuals manage, store, and process data. Cloud computing has become an essential aspect of modern computing due to its flexibility, s...DiscussCloud Computing
Melvin C Varghese (melvincv)blog.melvincv.com·Jul 10, 2023NGINX vs. Apache Web ServerApache operates in "prefork mode," employing a predetermined quantity of processes, each dedicated to handling one request at a time, whether static or dynamic. In contrast, NGINX takes an asynchronous approach toward requests. A single NGINX process...DiscussConfiguring NGINXnginx
Noibi Abdulrasaq O.olixpin.hashnode.dev·Jul 3, 2023How to Connect Your EC2 Instance to an Apache Web ServerIn this tutorial, we will guide you through the process of setting up an Apache web server on an Amazon EC2 (Elastic Compute Cloud) instance. By the end of this tutorial, you'll have a functional web server accessible through your EC2 instance's publ...Discuss·27 readsAWS
Mayank Tripathimayankt.hashnode.dev·Jun 4, 2023Web Servers: The Backbone of the InternetWeb servers are the backbone of the internet, enabling the delivery of web content to users worldwide. By processing requests, retrieving resources, and generating responses, these software applications facilitate the dynamic and static content deliv...Discuss·28 readsserver
Myra Jarengamycodingexperience.hashnode.dev·Jun 4, 2023Nginx Web Server ArchitectureIntroduction Nginx (pronounced "engine x") is a popular open-source web server that is widely used to handle high-traffic websites. It was developed in 2004 by Igor Sysoev and has since become one of the most popular web servers in the world. Before ...Discuss·40 readsWeb Development