Skip to content

Latest commit

 

History

History
213 lines (180 loc) · 13.8 KB

nginx.md

File metadata and controls

213 lines (180 loc) · 13.8 KB

Bookmarks tagged [nginx]

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.


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


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.


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;

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...


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...


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 ...

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

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


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...

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

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...


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

Building Microservices with Node, Docker and Nginx


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.


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...


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...
  • 📆 published on: 2017-05-21
  • tags: nginx, angular, node.js

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...

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

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...


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...


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...

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

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


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...


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.


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

Example configuration, core directives, nginx.conf


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


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...

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

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...


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 ...


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

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


http://nginx.org/en/CHANGES


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