这里是一个基本的 Nginx 配置文件示例,展示了常见的配置方式:
```nginx
# 全局配置
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
# 事件配置
events {
worker_connections 1024;
multi_accept on;
}
# HTTP 服务器配置
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;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
# 服务器配置示例
server {
listen 80;
server_name example.com;
# 根目录配置
root /var/www/html;
index index.html index.htm;
# location 路由配置
location / {
try_files $uri $uri/ =404;
}
# 静态文件缓存
location ~* \.(jpg|jpeg|png|gif|ico|css|js)$ {
expires 30d;
add_header Cache-Control "public, no-transform";
}
# 反向代理示例
# location /api/ {
# proxy_pass http://backend_server;
# proxy_set_header Host $host;
# proxy_set_header X-Real-IP $remote_addr;
# }
# 错误页面
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
}
# HTTPS 服务器配置示例
# server {
# listen 443 ssl;
# server_name example.com;
#
# ssl_certificate /path/to/certificate.crt;
# ssl_certificate_key /path/to/certificate.key;
# }
}
```
这个配置文件包括:
1. 全局配置
2. 事件配置
3. HTTP 服务器基本设置
4. 日志格式
5. 性能优化参数
6. 基本服务器块配置
7. 静态文件处理
8. 错误页面处理
注意:这只是一个示例,实际配置需要根据具体需求进行调整。配置文件的具体位置通常在 `/etc/nginx/nginx.conf`。