Nginx 下载 PHP 文件而不是执行它们

Nginx 下载 PHP 文件而不是执行它们

我正在使用 Nginx 作为我的 Web 服务器,但当我访问 PHP 页面时,它会将其下载给我。
我意识到我的翼手龙面板(在 php 中)仍在工作,所以我使用了 fastcgi 及其配置的其他部分,这并没有改变我的问题,
我在 Debian 11 VPS 上安装了最新版本的 Nginx 和 PHP 8.0。
这些文件的权限为 775,归 www-data 组所有。日志没有告诉我这个问题的任何原因。

server {
    listen 80;
    # SSL configuration
    #
    # listen 443 ssl default_server;
    # listen [::]:443 ssl default_server;
    #
    # Note: You should disable gzip for SSL traffic.
    # See: https://bugs.debian.org/773332
    #
    # Read up on ssl_ciphers to ensure a secure configuration.
    # See: https://bugs.debian.org/765782
    #
    # Self signed certs generated by the ssl-cert package
    # Don't use them in a production server!
    #
    # include snippets/snakeoil.conf;

    root /var/www/html/site;
    index index.html index.php index.htm index.nginx-debian.html;
    server_name mondomaine.eu www.mondomaine.eu;

    charset utf-8;

    location / {
        try_files $uri $uri/ /index.php?$query_string;
    }


    location ~ \.php$ {
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass unix:/run/php/php8.0-fpm.sock;
        fastcgi_index index.php;
        include fastcgi_params;
        fastcgi_param PHP_VALUE "upload_max_filesize = 100M \n post_max_size=100M";
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_param HTTP_PROXY "";
        fastcgi_intercept_errors off;
        fastcgi_buffer_size 16k;
        fastcgi_buffers 4 16k;
        fastcgi_connect_timeout 300;
        fastcgi_send_timeout 300;
        fastcgi_read_timeout 300;
    }

    location ~ /\.ht {
        deny all;
    }
}

你能帮忙吗?谢谢

相关内容