Nginx Cheatsheet - DEV Community
dev.to · 372 words · saved by 1 readers
Nginx is open-source software for web serving, reverse proxying, caching, load balancing, media strea...
Nginx is open-source software for web serving, reverse proxying, caching, load balancing, media streaming, and more. In this post, I will mention few Nginx configurations which we use frequently. Index Listen To Port Access Logging Domain Name Static Assets Redirect Reverse Proxy Load Balancing SSL Listen To Port server { # Standard HTTP Protocol listen 80; # Standard HTTPS Protocol listen 443 ssl; # Listen on 80 using IPv6 listen [::]:80; # Listen only on using IPv6 listen [::]:80 ipv6only=on; } Enter fullscreen mode Exit fullscreen mode Access Logging server { # Relative…
saved by
related reading
- How to Install and Configure Nginx on Ubuntu | Step-by-Step Guide | DigitalOceandigitalocean.com
- Nginx Server and Location Block Selection Algorithms | DigitalOceandigitalocean.com
- How To Secure Nginx with Let's Encrypt on Ubuntu | DigitalOceandigitalocean.com
- My personal reasons to not run my Nginx reverse-proxy inside Docker - Ewald Benesewaldbenes.com
- The Architecture of Open Source Applications (Volume 2)nginxaosabook.org
- How to Host a Static Website with Nginx | by Jason Rigden | Mediummedium.com
- Node.js Middleware Conceptw3schools.com
- Nginx plus React app on Ubuntu 20.04 - Serverspace.ioserverspace.io
- A Simple API in Python using Flask and Nginx and subsequent deployment on AWS EC2medium.com
- NGINX | F5nginx.com
- Web Proxyrotwang.co.uk
- hosting-an-org-based-websitelodder.dev