perlCopy codeuser nginx; # 运行 Nginx 的用户
worker_processes 1; # 工作进程的数量
error_log /var/log/nginx/error.log warn; # 错误日志路径和级别
pid /var/run/nginx.pid; # 进程 ID 文件路径
events {
worker_connections 1024; # 每个 worker 进程的最大并发连接数
}
http {
include /etc/nginx/mime.types; # MIME 类型配置文件
default_type Application/octet-stream; # 默认 MIME 类型
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; # 是否开启 TCP NOPUSH 模式
#keepalive_timeout 0; # HTTP keep-alive 连接超时时间
server {
listen 80; # 监听端口
server_name example.com; # 域名或 IP 地址
charset utf-8; # 字符编码
location / {
root /usr/share/nginx/html; # 静态文件根目录
index index.html index.htm; # 默认首页文件
}
error_page 500 502 503 504 /50x.html; # 错误页面
location = /50x.html {
root /usr/share/nginx/html;
}
location /api/ {
proxy_pass http://127.0.0.1:8000/; # 反向代理到后端应用服务器
}
# HTTPS 配置
# listen 443 ssl;
# server_name example.com;
# ssl_certificate /path/to/cert;
# ssl_certificate_key /path/to/key;
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 5m;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
}
}
user: 指定运行 Nginx 的用户。通常为 nginx 用户。
worker_processes: 指定 Nginx 工作进程的数量。通常为 CPU 核心数的 2 倍。
error_log: 指定 Nginx 错误日志的路径和级别。级别包括 debug、info、notice、warn、error、crit、alert、emerg 等。
pid: 指定 Nginx 进程 ID 文件的路径。
events: 指定 Nginx 事件模型的参数,如 worker_connections 指定每个 worker 进程的最大并发连接数。
http: 定义 HTTP 协议的配置,包括 MIME 类型、日志格式、访问日志路径和格式、文件传输优化、TCP NOPUSH 模式等。
include: 引入外部配置文件,如 MIME 类型配置文件 /etc/nginx/mime.types。
default_type: 指定默认的 MIME 类型。
log_format: 指定访问日志的格式。
access_log: 指定访问日志的路径和格式。
sendfile: 指定是否开启文件传输优化。
keepalive_timeout: 指定 HTTP keep-alive 连接超时时间。
server: 定义一个虚拟主机,包括监听端口、域名或 IP 地址、字符编码、静态文件根目录、默认首页文件、错误页面、反向代理配置等。
listen: 指定监听的端口,如 80、443。
server_name: 指定域名或 IP 地址。
charset: 指定字符编码。
location: 定义 URL 路径匹配规则,包括静态文件根目录、默认首页文件、错误页面、反向代理配置等。
语法:
user user_name [group_name];
worker_processes number;
语法:worker_cpu_affinity cpumask1 [cpumask2 ...];
worker_rlimit_nofile number;
worker_shutdown_timeout time;
http2 on|off;
ssl on|off;
proxy_pass URL;
proxy_set_header field value;
client_max_body_size size;
gzip on|off;
server_tokens on|off;
access_log path [format [buffer=size] [flush=time] [if=condition]];
error_log path [level];
include file_path;
ssl on|off;
ssl_certificate file_path; 和 ssl_certificate_key file_path;
ssl_protocols protocol1 [protocol2 ...];
ssl_ciphers cipher1 [cipher2 ...];
ssl_prefer_server_ciphers on|off;