nginx完整配置示例
时间: 2023-10-02 15:10:13 浏览: 136
nginx示例代码以及中文配置详解
以下是一个Nginx完整的配置示例:
```
# 全局配置
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;
# events配置
events {
worker_connections 1024;
}
# http配置
http {
# mime类型映射
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;
# 开启gzip压缩
gzip on;
gzip_types text/plain text/css application/json application/javascript;
# 虚拟主机配置
server {
# 监听端口
listen 80;
# 域名
server_name example.com www.example.com;
# 静态文件缓存配置
location /static/ {
expires 7d;
add_header Cache-Control "public";
}
# 反向代理配置
location /api/ {
proxy_pass http://localhost:8000/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
# 默认页面
location / {
root /var/www/html;
index index.html;
}
}
}
```
以上示例中,Nginx的全局配置包括设置用户、工作进程、错误日志和进程ID文件的路径。在events配置中设置了每个工作进程的最大连接数。在http配置中,包含了mime类型映射、日志格式、访问日志、gzip压缩以及虚拟主机配置。虚拟主机使用了80端口,监听了example.com和www.example.com两个域名,配置了静态文件缓存、反向代理和默认页面。
阅读全文