timbutler / NGINX-Cookbook

NGINX Cookbook, published by Packt

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

$5 Tech Unlocked 2021!

If you have read this book, please leave a review on Amazon.com. Potential readers can then use your unbiased opinion to help them make purchase decisions. Thank you. The $5 campaign runs from December 15th 2020 to January 13th 2021.

NGINX Cookbook

This is the code repository for NGINX Cookbook, published by Packt. It contains all the supporting project files necessary to work through the book from start to finish.

About the Book

This book also focuses on key NGINX features such as back-end SSL certificate verification, IPv6, log aggregation over network, thread pools, support for offloading I/O requests, and much more. This book also covers advanced topics such as covering bandwidth management, Docker container usage, performance tuning, OpenResty, and the NGINX Plus commercial features. ##Instructions and Navigation All of the code is organized into folders. Each folder starts with a number followed by the application name. For example, Chapter02.

The code will look like the following:

server {
      listen 80;
      server_name server.yourdomain.com; 
      access_log /var/log/nginx/log/host.access.log combined;
         
      location / {
          root /var/www/html;
          index index.html; 
      }
}

The following is the list of software you require to go through the recipes covered in this book:

  • NGINX
  • PHP 7
  • Ubuntu/CentOS/RHEL

Related Products

About

NGINX Cookbook, published by Packt

License:MIT License


Languages

Language:Lua 84.4%Language:JavaScript 9.0%Language:Python 6.6%