写个nginx配置文件
时间: 2023-09-02 08:11:36 浏览: 99
nginx的配置文件
5星 · 资源好评率100%
以下是一个基本的Nginx配置文件示例:
```
# 简单的Nginx配置文件示例
# 设置Nginx的工作进程数
worker_processes 1;
# 设置Nginx使用的用户和用户组
user www-data www-data;
# 设置Nginx运行的日志文件位置
error_log /var/log/nginx/error.log;
pid /var/run/nginx.pid;
# 设置Nginx监听的端口和服务器名称
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
# 设置Nginx的日志格式
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
# 设置Nginx的访问日志位置和格式
access_log /var/log/nginx/access.log main;
# 设置Nginx的虚拟主机
server {
listen 80;
server_name localhost;
# 设置Nginx的根目录和默认文件
root /var/www/html;
index index.html index.htm;
# 配置Nginx处理静态文件的缓存时间
location /static/ {
expires 7d;
}
# 配置Nginx处理动态请求的代理
location /api/ {
proxy_pass http://localhost:8080;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
}
```
这是一个简单的Nginx配置文件示例,它包括了Nginx的基本配置参数和一个虚拟主机的配置。其中,Nginx监听80端口,使用localhost作为服务器名称,根目录为/var/www/html,处理静态文件的缓存时间为7天,处理动态请求的代理转发到localhost:8080。
阅读全文