nginx.md

July 15, 2021 · View on GitHub

Bookmarks tagged [nginx]

www.codever.land/bookmarks/t/nginx

Setting Up Authelia With SWAG

https://blog.linuxserver.io/2020/08/26/setting-up-authelia/

This article details how SSO via Authelia can be easily set up using SWAG's preset Authelia confs.


The NGINX Handbook

https://www.freecodecamp.org/news/the-nginx-handbook/


Express behind proxies

https://expressjs.com/en/guide/behind-proxies.html

When running an Express app behind a proxy, set (by using app.set()) the application variable trust proxy to one of the values listed in the following table.


Nginx Proxy: upstream sent too big header while reading response header from upstream

https://ma.ttias.be/nginx-proxy-upstream-sent-big-header-reading-response-header-upstream/

proxy_buffer_size          128k;
proxy_buffers              4 256k;
proxy_busy_buffers_size    256k;

NGINX Ingress Controller Home Page

https://kubernetes.github.io/ingress-nginx/

This repository contains the NGINX controller built around the Kubernetes Ingress resource that uses [ConfigMap](https://kubernetes.io/docs/tasks/confi...


Dockerizing an Angular App

https://mherman.org/blog/dockerizing-an-angular-app/

This tutorial shows how to Dockerize an Angular app, built with the Angular CLI, using Docker along with Docker Compose and Docker Machine for both development and production. We’ll specifically focus...


Dockerizing a React App

https://mherman.org/blog/dockerizing-a-react-app/

This tutorial demonstrates how to Dockerize a React app using the Create React App generator. We’ll specifically focus on-

  1. Setting up a development ...

awesome-nginx-resources

https://github.com/fcambus/nginx-resources#readme

A collection of resources covering Nginx, Nginx + Lua, OpenResty and Tengine - fcambus/nginx-resources


Understanding Nginx Server and Location Block Selection Algorithms

https://www.digitalocean.com/community/tutorials/understanding-nginx-server-and-location-block-selec...

Nginx is one of the most popular web servers in the world. In this guide, we will discuss how Nginx selects the server and location block that will handle a given client's request. We will go over the...

  • :calendar: published on: 2014-11-17
  • tags: nginx

API Infrastructure at Knewton: What’s in an Edge Service?

https://medium.com/knerd/api-infrastructure-at-knewton-whats-in-an-edge-service-51a3777aeb41

In this post, we will pull back the covers of our API to explain how we handle user requests. You will first learn how to build an edge service with Netflix Zuul, the framework we chose for its simpli...


Building Microservices with Node, Docker and Nginx pt 1 - What is a Microservice?

https://www.youtube.com/watch?v=EsCfPxjmnjo

Building Microservices with Node, Docker and Nginx


5 Tips to Increase Node.js Application Performance

https://www.nginx.com/blog/5-performance-tips-for-node-js-applications/

Achieve high performance with node.js applications with these 5 tips from NGINX, including how to use a reverse proxy server, load balancer, and caching.


The Architecture of Open Source Applications (Volume 2) - nginx

http://www.aosabook.org/en/nginx.html

nginx (pronounced "engine x") is a free open source web server written by Igor Sysoev, a Russian software engineer. Since its public launch in 2004, nginx has focused on high performance, high concurr...


How to configure Nginx in production to serve an Angular app and reverse proxy NodeJS – CodingpediaOrg

http://www.codingpedia.org/ama/how-to-configure-nginx-in-production-to-serve-angular-app-and-reverse...

In this guide we are going to:

  • install the latest NGINX version in Ubuntu 16.04.1
  • understand configuration files
  • generate SSL certificates and configure them in NGINX
  • configure NGINX as rever...
  • :calendar: published on: 2017-05-21
  • tags: nginx, angular, node.js

centos - nginx missing sites-available directory - Stack Overflow

https://stackoverflow.com/questions/17413526/nginx-missing-sites-available-directory

Well I think nginx by it self doesn't have that in it's setup, but the Ubuntu maintained package does it as a convention to imitate apache setup, you can create it your self if you want.

Create _/etc...

  • :calendar: published on: 2016-08-03
  • tags: nginx

Using nginx as HTTP load balancer

http://nginx.org/en/docs/http/load_balancing.html

Load balancing across multiple application instances is a commonly used technique for optimizing resource utilization, maximizing throughput, reducing latency, and ensuring fault-tolerant configuratio...


NGINX Reverse Proxy | NGINX

https://www.nginx.com/resources/admin-guide/reverse-proxy/

This article describes the basic configuration of a proxy server. You will learn how to pass a request from NGINX to proxied servers over different protocols, modify client request headers that are se...


Strong SSL Security on nginx - Raymii.org

https://raymii.org/s/tutorials/Strong_SSL_Security_On_nginx.html

This tutorial shows you how to set up strong SSL security on the nginx webserver. We do this by updating OpenSSL to the latest version to mitigate attacks like Heartbleed, disabling SSL Compression an...

  • :calendar: published on: 2015-06-14
  • tags: nginx

Home · Codingpedia/bookmarks-api Wiki · GitHub

https://github.com/Codingpedia/bookmarks-api/wiki


Cipherli.st - Strong Ciphers for Apache, nginx and Lighttpd

https://cipherli.st/

These examples are meant for sysadmins who have done this before (and sysadmins are forced to support Windows XP with IE < 9, therefore des3cbc), as an easily copy-pastable example, not for newbies wh...


How To Secure Nginx with Let's Encrypt on Ubuntu 16.04

https://www.digitalocean.com/community/tutorials/how-to-secure-nginx-with-let-s-encrypt-on-ubuntu-16...

In this tutorial, we will show you how to use Certbot to obtain a free SSL certificate and use it with Nginx on Ubuntu 16.04. We will also show you how to automatically renew your SSL certificate.


Core functionality

http://nginx.org/en/docs/ngx_core_module.html

Example configuration, core directives, nginx.conf


Full Example Configuration | NGINX

https://www.nginx.com/resources/wiki/start/topics/examples/full/


Understanding the Nginx Configuration File Structure and Configuration Contexts

https://www.digitalocean.com/community/tutorials/understanding-the-nginx-configuration-file-structur...

While many users are aware of Nginx's capabilities, new users are often confused by some of the conventions they find in Nginx configuration files. In this guide, we will focus on discussing the basic...

  • :calendar: published on: 2014-11-19
  • tags: nginx

How To Install Nginx on Ubuntu 16.04

https://www.digitalocean.com/community/tutorials/how-to-install-nginx-on-ubuntu-16-04

Nginx is one of the most popular web servers in the world and is responsible for hosting some of the largest and highest-traffic sites on the internet. It is more resource-friendly than Apache in most...

  • :calendar: published on: 2016-04-21
  • tags: nginx, ubuntu

How To Set Up Nginx Server Blocks (Virtual Hosts) on Ubuntu 16.04

https://www.digitalocean.com/community/tutorials/how-to-set-up-nginx-server-blocks-virtual-hosts-on-...

When using the Nginx web server, server blocks (similar to the virtual hosts in Apache) can be used to encapsulate configuration details and host more than one domain off of a single server. Multiple ...

  • :calendar: published on: 2016-05-19
  • tags: nginx, ubuntu

nginx documentation

https://nginx.org/en/docs/

Installing, beginner's guide, admin's guide etc.


Nginx Changelog

http://nginx.org/en/CHANGES


Nginx Admin Guide

https://www.nginx.com/resources/admin-guide/

  • Installing Nginx
  • Getting started
  • Web Server Configuration
  • Reverse Proxy
  • Serving static content
  • Compression and decompression
  • etc.
  • tags: nginx