nginx 配置文件
时间: 2023-06-21 08:10:52 浏览: 60
nginx的配置文件
Nginx 配置文件是一个文本文件,通常位于 `/etc/nginx/` 目录下,主要包括以下几个部分:
1. 全局块:配置影响 nginx 全局的指令,一般有运行 nginx 的用户组、nginx 进程 pid 存放路径、日志存放路径和类型以及配置文件引入等。
2. events 块: 配置影响 nginx 服务器或与用户的网络连接,常用于设置连接超时时间、最大连接数等。
3. http 块:http 块中定义的配置指令用于处理 Web 请求,主要包括了 MIME 类型、字符集、缓存、请求限制等。
4. server 块:配置虚拟主机的相关参数,一个 http 块中可以包含多个 server 块,每个 server 块就相当于一个虚拟主机,用于处理来自客户端的请求。
一个简单的 Nginx 配置文件示例如下:
```
user nginx;
worker_processes auto;
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;
access_log /var/log/nginx/access.log main;
sendfile on;
keepalive_timeout 65;
server {
listen 80;
server_name example.com;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
}
}
```
这个配置文件包含全局块和一个 server 块,其中:
- `user` 指定 Nginx 运行的用户;
- `worker_processes` 指定 Nginx 启动的 worker 进程数;
- `error_log` 指定错误日志文件路径和级别;
- `pid` 指定 Nginx 进程 ID 存放路径;
- `events` 块中 `worker_connections` 指定每个 worker 进程最大连接数;
- `http` 块中 `include` 指定 MIME 类型配置文件路径;
- `default_type` 指定默认 MIME 类型;
- `access_log` 指定访问日志文件路径和格式;
- `sendfile` 指定是否使用 sendfile 函数传输文件;
- `keepalive_timeout` 指定 keep-alive 连接超时时间;
- `server` 块中 `listen` 指定监听端口和协议;
- `server_name` 指定虚拟主机域名;
- `location` 指定请求 URL 和对应的文件路径。
阅读全文