server
{
listen 80;
listen [::]:80;
server_name _;
#error_page 403 /403.html;
#error_page 404 /404.html;
location / {
root /var/www/html;
index index.php;
#try_files $uri $uri/ /index.php?$args;
location ~ \.php$ {
fastcgi_pass unix:/run/php/php7.4-fpm.sock;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
include snippets/fastcgi-php.conf;
}
}
}
.php
и .html
?