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.
- :calendar: published on: 2020-08-26
- tags: docker-compose, nginx, tls, oauth2, cloud, linux
- :octocat: source code
The NGINX Handbook
https://www.freecodecamp.org/news/the-nginx-handbook/
- tags: nginx
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.
- tags: expressjs, proxy, reverse-proxy, nginx
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;
- tags: nginx
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...
- tags: kubernetes, load-balancing, nginx
- :octocat: source code
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...
- :calendar: published on: 2019-05-20
- tags: angular, docker, docker-compose, dockerfile, nginx
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-
- Setting up a development ...
- :calendar: published on: 2019-05-17
- tags: reactjs, docker, docker-compose, dockerfile, nginx
awesome-nginx-resources
https://github.com/fcambus/nginx-resources#readme
A collection of resources covering Nginx, Nginx + Lua, OpenResty and Tengine - fcambus/nginx-resources
- tags: awesome-list, backend, nginx
- :octocat: source code
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...
- :calendar: published on: 2016-05-09
- tags: api, microservices, nginx, zuul
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
- Part 1 What is a Microservice?" I walk you through what a Microservice is and what this 3 part tutorial will show you.
- Part 2 [Making a micro...
- :calendar: published on: 2017-12-29
- tags: node.js, microservices, docker, docker-compose, nginx
- :octocat: source code
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.
- :calendar: published on: 2015-11-16
- tags: nginx, node.js, performance, optimization
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...
- tags: nginx, architecture, performance, optimization
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...
- tags: nginx
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...
- tags: nginx
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
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.
- :calendar: published on: 2016-03-30
- tags: nginx, ssl, letsencrypt
Core functionality
http://nginx.org/en/docs/ngx_core_module.html
Example configuration, core directives, nginx.conf
- tags: nginx
Full Example Configuration | NGINX
https://www.nginx.com/resources/wiki/start/topics/examples/full/
- tags: nginx
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...
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 ...
nginx documentation
Installing, beginner's guide, admin's guide etc.
Nginx Changelog
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