Nginx: Instalasi Ubuntu 20.04 PHP8: Difference between revisions
From OnnoCenterWiki
Jump to navigationJump to search
Onnowpurbo (talk | contribs) |
Onnowpurbo (talk | contribs) |
||
| Line 11: | Line 11: | ||
sudo apt update | sudo apt update | ||
sudo apt install php8.0-fpm | sudo apt -y install php8.0-fpm | ||
Cek | Cek | ||
systemctl status php8.0-fpm | systemctl status php8.0-fpm | ||
==Install Nginx== | ==Install Nginx== | ||
Revision as of 22:11, 9 December 2020
Sumber: https://linuxize.com/post/how-to-install-php-8-on-ubuntu-20-04/
Tambahkan Repository
sudo apt -y install software-properties-common sudo add-apt-repository ppa:ondrej/php sudo apt update
Install
sudo apt update sudo apt -y install php8.0-fpm
Cek
systemctl status php8.0-fpm
Install Nginx
Tambahkan di Konfigurasi Nginx
server {
# . . . other code
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php8.0-fpm.sock;
}
}