apt install php php-fpm php-common php-pear php-mbstring
vi /etc/nginx/sites-available/default
…
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php7.3-fpm.sock;
}
…
systemctl restart php7.3-fpm nginx
echo “” > /var/www/html/info.php
コメント