flâneur

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