# 定义nginx运行的用户和用户组
user www-data;
# 指定工作模式和连接数上限
events {
worker_connections 1024;
}
# 设置HTTP服务器
http {
# 设置默认字符集
charset utf-8;
# 设置日志格式
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
# 设置用于gzip压缩的缓冲区大小
gzip_buffers 16 8k;
# 设置gzip压缩的最小资源大小
gzip_min_length 256;
# 设置gzip压缩的类型
gzip_types text/plain text/css application/json application/javascript application/x-javascript text/xml application/xml application/xml+rss text/javascript;
# 设置服务器名称和监听端口
server {
listen 80;
server_name example.com;
# 设置网站根目录
root /var/www/html;
# 设置索引文件
index index.php index.html index.htm;
# 设置错误页面
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
# 处理PHP请求
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
# 设置静态文件的缓存时间
location ~* \.(jpg|jpeg|png|gif|ico|css|js)$ {
expires 30d;
}
# 处理静态文件请求
location / {
try_files $uri $uri/ =404;
}
}
}
这个配置文件设置了基本的Nginx服务器,包括字符集设置、日志格式、gzip压缩、服务器名称、监听端口、索引文件、错误页面、PHP请求处理、静态文件缓存和静态文件处理。这为PHP网站提供了一个高性能、高效率的部署环境。