#nginx
Read more stories on Hashnode
Articles with this tag
Nginx config: upstream myapp1 { server 127.0.0.1:9001 max_fails=1 fail_timeout=10s; server 127.0.0.1:9002 backup; } If there is 1 fail in 10...
Install If you install nginx on Ubuntu 18.04, the default version is 1.14.0. If you want to install the latest stable version, use the command...
Nginx Config In nginx.conf: user nobody nogroup; worker_processes auto; worker_cpu_affinity auto; events { worker_connections 1024; ...