Nginx 基础应用实战 06 构建一个PHP的站点
以下是一个简化的示例,展示了如何配置Nginx以托管一个PHP站点的基础步骤:
server {
listen 80;
server_name example.com;
root /var/www/html;
index index.php index.html index.htm;
error_log /var/log/nginx/error.log;
access_log /var/log/nginx/access.log;
location / {
try_files $uri $uri/ =404;
}
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;
}
}
这个配置文件定义了一个虚拟主机,监听80端口,并设置了服务器名称(example.com
),网站根目录(/var/www/html
),以及错误日志和访问日志的位置。它还包括了处理PHP文件请求的location块,这里使用了PHP-FPM的Unix套接字进行通信。
确保在实际环境中替换服务器名称、根目录、日志路径以及PHP-FPM的socket路径为适合您服务器配置的值。
评论已关闭