浏览器下载文件而不是打开 php 文件

浏览器下载文件而不是打开 php 文件

因此,我发布了一个答案,因为在两次全新安装后,我设置了一些不同的东西(在我看来)。就像我上面说的,我面临一个困境,因为我拥有的配置与我能找到的任何其他答案都不相同。例如:

我的 /etc/nginx 文件夹基本构成如下:

|- /etc/nginx/
|  |- conf.d/
|  |  |- default.conf
|  |
|  |- fastcgi_params
|  |- mime.types
|  |- modules/ -> /usr/lib/nginx/modules
|  |- nginx.conf
|  |- scgi_params
|  |- uwsgi_params

到处都看不到 /sites-available 或 /sites-enabled,提到的 fastcgi-php.conf 实际上是根文件夹中的 fastcgi_params,因此我的默认设置不在 site-available 文件夹中。

下面是我现在拥有的两个配置文件(域名隐藏在 my_domain.com 下):第一个:nginx.conf(几乎未受影响)

    user  nginx;

worker_processes  auto;

error_log  /var/log/nginx/error.log notice;

pid        /var/run/nginx.pid;


events {
    worker_connections  1024;

}

http {
    include       /etc/nginx/mime.types;
    include       /etc/nginx/sites-available/*.conf;
    default_type  application/octet-stream;


    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '

                      '$status $body_bytes_sent "$http_referer" '

                      '"$http_user_agent" "$http_x_forwarded_for"';



    access_log  /var/log/nginx/access.log  main;
    sendfile        on;
    #tcp_nopush     on;
    keepalive_timeout  65;
    #gzip  on;
    include /etc/nginx/conf.d/*.conf;

}

其次/etc/nginx/conf.d/default.conf

    server {
    listen       80;
    server_name  my_domain.com www.my_domain.com;

    location / {
        root /var/www/www.my_domain.com;
        index  index.php index.html index.htm;
    }

    #error_page  404              /404.html;

    # redirect server error pages to the static page /50x.html
    #
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /var/www/www.my_domain.com;
    }

    # proxy the PHP scripts to Apache listening on 127.0.0.1:80
    #
    #location ~ \.php$ {
    #    proxy_pass   http://127.0.0.1;
    #}

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    location ~ \.php$ {
        fastcgi_split_path_info ^(.+?\.php)(/.*)$;
        #if (!-f $document_root$fastcgi_script_name) {
        #    return 404;
        #}
        root           /var/www/www.my_domain.com;
    #    fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
    #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        include        fastcgi_params;
        fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
    }
    

}

我还添加了一行

text/php            php;

对于 mime.types,我还记得在我使用的浏览器(Firefox、Opera 和 Chrome)中删除 my_domain 的缓存。

但文件仍然被下载。

我做错了什么 ?

编辑:因为我想创建一个 blog.my_domain.com、shop.my_domain.com 和 forum._mydomain.com,我创建了 /site-available 和 /site-enabled 文件夹,打算在位于 /sites-available 的每个同名文件夹中创建一个 blog/forum/shop.my_domain.com.conf,但我正在等待一个有效的配置以使它们在 nginx.conf 中可见(带有包含行,对吗?)。

所以我真的不明白这两个文件夹是如何工作的。子域名的 CNAME 记录设置为 my_domain.com。我也读过关于为这些子网站创建符号链接的文章,但我真的不知道从哪里到哪里?再次感谢

错误日志告诉我与 /var/run/php/ 的连接被拒绝。默认用户是 www-data www-data,但我的默认 nginx 用户是 nginx(如果我更改它,它甚至不会启动。)我应该做一个

chown nginx:nginx /var/run/php/

答案1

要配置 php,您必须在系统上安装某个版本的 php-fpm。并将此代码段添加到 nginx conf 中的server块中。

您必须更改php5-fpm为您在系统上安装的版本。

  location ~ \.php$ {
    fastcgi_pass unix:/var/run/php5-fpm.sock;
    fastcgi_index index.php;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    include fastcgi_params;
  }

答案2

你缺少 PHP 解释器,NGINX 有一篇文章在其关于 FPM 的 wiki 上。

相关内容