在 Linux 上安装 PHP 8 并配置 PHP-FPM 的过程分为以下几个步骤:
sudo apt update
sudo apt install php8.0 php8.0-fpm
sudo systemctl start php8.0-fpm
sudo systemctl enable php8.0-fpm
sudo systemctl status php8.0-fpm
安装 Nginx:
sudo apt install nginx
创建一个新的 Nginx server 配置文件:
sudo nano /etc/nginx/sites-available/your_domain_or_project
将以下内容粘贴到文件中,替换 your_domain_or_project
为你的域名或项目名称:
server {
listen 80;
server_name your_domain_or_project;
root /var/www/your_domain_or_project/public;
index index.php index.html index.htm;
location / {
try_files $uri $uri/ =404;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php8.0-fpm.sock;
}
location ~ /\.ht {
deny all;
}
}
保存文件并退出编辑器(在 nano 中,按 Ctrl + X
,然后按 Y
,最后按 Enter
)。
创建一个符号链接,将配置文件链接到 sites-enabled
目录:
sudo ln -s /etc/nginx/sites-available/your_domain_or_project /etc/nginx/sites-enabled/
重启 Nginx 服务以应用更改:
sudo systemctl restart nginx
现在,你已经成功安装了 PHP 8 并配置了 PHP-FPM。你可以开始创建和运行 PHP 应用程序了。