nginx.conf配置详解
时间: 2024-06-15 13:02:06 浏览: 238
Nginx配置文件(nginx.conf)配置详解
Nginx配置文件(nginx.conf)是Nginx服务器的主要配置文件,它定义了服务器的基本设置、监听选项、虚拟主机(server blocks)、路由规则和安全策略等。以下是nginx.conf的一些关键部分和配置详解:
1. **Server Block (虚拟主机)**:
每个`server`块代表一个独立的网站或服务,包含了域名、IP地址、端口、文档根目录等信息。例如:
```
server {
listen 80;
server_name example.com;
root /var/www/example.com;
}
```
这里,Nginx监听80端口,当请求example.com时,它将从`/var/www/example.com`目录下提供内容。
2. **Listen and Connections**:
`listen`指令指定Nginx监听的网络接口和端口。`backlog`参数设置连接队列长度。
```yaml
listen 80; # 默认监听HTTP
listen [::]:443 ssl; # 双向绑定并加密HTTPS
```
3. **Location Blocks (路由)**:
`location`指令定义了URL路径的处理规则,包括文件服务、动态内容、反向代理等。例如:
```
location /api/ {
proxy_pass http://backend/;
}
```
4. **Access Control**:
`access_log`用于记录访问日志,`limit_rate`设置带宽限制,`auth_basic`用于基本身份验证。
```bash
access_log /var/log/nginx/access.log combined;
limit_rate 100m;
auth_basic "Restricted Area";
```
5. **Error Handling**:
`error_page`定义错误代码对应的页面,`error_document`处理自定义错误。
```nginx
error_page 404 /404.html;
error_page 500 /500.html;
```
6. **SSL/TLS Configuration**:
如果需要使用HTTPS,会配置`ssl_certificate`, `ssl_certificate_key`以及加密算法等。
阅读全文