nginx配置
时间: 2023-06-30 22:24:22 浏览: 121
Nginx 是一个高性能的 Web 服务器和反向代理服务器,常用于搭建 Web 服务和负载均衡等。下面是一个简单的 Nginx 配置示例:
```
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 80;
server_name example.com;
location / {
root /var/www/example.com;
index index.html index.htm;
}
error_page 404 /404.html;
location = /404.html {
root /var/www/error;
}
}
}
```
上述配置中,`worker_processes` 指定了 Nginx 启动时的进程数;`events` 指定了 Nginx 处理连接的相关参数;`http` 指定了 HTTP 服务的相关参数;`server` 指定了一个 HTTP 服务的监听地址和名称;`location` 指定了请求的路径和对应的文件路径。此外,还可以在配置文件中添加其他的 Nginx 模块和指令,以实现更多的功能。
阅读全文