0xBF
0xBF

0xBF

Follow
homeSeriesOpen Source License
Tag

nginx

#nginx

More content

Read more stories on Hashnode


Articles with this tag

Nginx Backup

Jul 27, 20211 min read

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

Nginx Backup

Install Latest Stable Nginx on Ubuntu

May 25, 20211 min read

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

Install Latest Stable Nginx on Ubuntu

Nginx Config Sample

May 24, 20211 min read

Nginx Config In nginx.conf: user nobody nogroup; worker_processes auto; worker_cpu_affinity auto; events { worker_connections 1024; ...

Nginx Config Sample