nginx.conf样例
时间: 2023-10-31 09:57:25 浏览: 20
nginx.conf 例子
以下是一个简单的 nginx.conf 样例:
```
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 80;
server_name example.com;
root /var/www/example.com;
location / {
index index.html;
}
location /api/ {
proxy_pass http://localhost:3000/;
}
}
}
```
这个样例配置了一个简单的 HTTP 服务器,监听 80 端口。当收到请求时,它会在 `/var/www/example.com` 下查找文件,并且默认返回 `index.html`。如果请求的路径以 `/api/` 开头,Nginx 会将请求代理给本地运行的另一个应用程序(例如 Node.js 应用),该应用程序监听 3000 端口。
阅读全文