Skip to content

MarkEddy001/alx-system_engineering-devops

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

<<<<<<< HEAD img

Application Server

Concepts

For this project, we expect you to look at the following concepts

its application server innit

Background context

Your web infrastructure is already serving web pages via Nginx that you installed in your first web stack project. While a web server can also serve dynamic content, this task is usually given to an application server. In this project you will add this piece to your infrastructure, plug it to your Nginx and make is serve your Airbnb clone project

About

An application server is a software framework or container that provides an environment for running and managing web applications. It acts as an intermediary between the web server and the web application, handling the execution of the application's code and managing resources such as concurrency, session management, and security.

Gunicorn (Green Unicorn) is an example of an application server for Python web applications. It serves as a WSGI (Web Server Gateway Interface) HTTP server that runs your Python web application and handles the communication between the web server and your application. Running your Python web application using Gunicorn instead of running the module directly offers several advantages:

  1. Improved concurrency: Gunicorn is designed to handle multiple concurrent requests efficiently. It uses a pre-fork worker model, where multiple worker processes are created to handle incoming requests. Each worker operates independently, allowing your application to handle multiple requests simultaneously. This improves the overall performance and responsiveness of your application, especially under high load.

  2. Load balancing: Gunicorn can be configured to run multiple worker processes, distributing the incoming requests across them. This load balancing helps distribute the workload and prevents any single worker from becoming overwhelmed. It allows your application to scale horizontally and handle increased traffic by utilizing multiple processes.

  3. Worker process management: Gunicorn manages the worker processes, starting them, and gracefully shutting them down as needed. It monitors worker health and automatically restarts any workers that have become unresponsive or crashed. This helps ensure the stability and reliability of your application, as Gunicorn can handle process failures and keep your application running.

  4. Integration with web servers: Gunicorn can seamlessly integrate with popular web servers like Nginx. When used together, Nginx acts as a reverse proxy server, forwarding requests to Gunicorn. This setup allows Nginx to handle tasks like serving static files, caching, SSL termination, and load balancing across multiple Gunicorn instances. It provides an additional layer of flexibility and performance optimization for your web application.

  5. Logging and monitoring: Gunicorn provides detailed logging that can be useful for debugging and monitoring your application. It logs request information, worker status, and any errors or exceptions encountered. This information is essential for identifying and troubleshooting issues in your application.

  6. Configuration options: Gunicorn offers a wide range of configuration options that allow you to fine-tune its behavior to suit your application's needs. You can adjust the number of worker processes, timeouts, logging settings, and more. These options give you greater control over how Gunicorn handles your application.

Resources

  1. Application server vs web server
  2. How to Serve a Flask Application with Gunicorn and Nginx on Ubuntu 16.04 (As mentioned in the video, do not install Gunicorn using virtualenv, just install everything globally)
  3. Running gunicorn
  4. Be careful the way Flask handles slashes in route - strict_slashes
  5. Upstart documentation... =======

Alx-system Engineering & DevOps

At ALX School we do hard things, the goal is not to be a good student rather the key goal is to be a good software Engineer. ALX_africa are on a mission to identify, develop and equip Africa’s next 3 million leaders. We have projects everyday that we have to push on GitHub in order for an automatic review to be done by Ubuntu 20.04 LTS. This repository contains directories each corresponding to a software engineering or DevOps project. These projects are part of the ALX Software Engineering year 1 curriculum. In these projects, we cover everything from the basics of the Linux Shell, Bash commands, Bash scripting, networking, APIs, and web-stack debugging to more advanced topics.

b30484b0a3b220ef1d42977718c3fd443df9d4c3

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published