在 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 應用程序了。