- NGINX Cookbook
- Tim Butler
- 249字
- 2021-07-03 00:04:19
How to do it...
By default, NGINX will have two main configuration files. The first is /etc/nginx/nginx.conf, which contains the main server configuration. The second is /etc/nginx/default.conf, which defines a basic site out of the box for you.
Before you make any changes, be 100 percent sure that you understand the implications. Out of the box, NGINX is a highly performant web server which already gives great performance. The age-old programmer's saying that premature optimization is the root of all evil continually rings true here. Simply increasing some figures may lead to increased memory usage, decreased stability, and decreased performance. In Chapter 11, Performance Tuning, we'll go through some of the more advanced areas to tweak, but make sure to hit limits before attempting this.
Here's the default configuration:
user nginx; worker_processes 1; error_log /var/log/nginx/error.log warn; pid /var/run/nginx.pid; events { worker_connections 1024; } http { include /etc/nginx/mime.types; default_type application/octet-stream; log_format main '$remote_addr - $remote_user [$time_local]
"$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; access_log /var/log/nginx/access.log main; sendfile on; #tcp_nopush on; keepalive_timeout 65; #gzip on; include /etc/nginx/conf.d/*.conf; }
The configuration files have two main components in them—simple directives and block directives. Simple directives are one-line items which are simple name and value, followed by a semicolon (;). A block directive has a set of brackets and allows configuration items to be set within a specific context. This makes the configuration files easier to follow, especially as they get more complex.
- 大話PLC(輕松動(dòng)漫版)
- Learning Apex Programming
- Python語(yǔ)言程序設(shè)計(jì)
- 精通Scrapy網(wǎng)絡(luò)爬蟲(chóng)
- Java軟件開(kāi)發(fā)基礎(chǔ)
- Securing WebLogic Server 12c
- Linux操作系統(tǒng)基礎(chǔ)案例教程
- Scala編程實(shí)戰(zhàn)(原書(shū)第2版)
- Python編程從0到1(視頻教學(xué)版)
- PySide 6/PyQt 6快速開(kāi)發(fā)與實(shí)戰(zhàn)
- Django 3.0入門(mén)與實(shí)踐
- 軟件項(xiàng)目管理實(shí)用教程
- Bootstrap for Rails
- 算法設(shè)計(jì)與分析:基于C++編程語(yǔ)言的描述
- 寫(xiě)給大家看的Midjourney設(shè)計(jì)書(shū)