Tại sao các tệp PHP được tải xuống thay vì được xử lý bởi Nginx?


12

Tôi đã thấy vấn đề tương tự, và nhiều độ phân giải cho nó chỉ ra việc thêm trình xử lý kiểu, nhưng đó là cho Apache.

Tôi đang sử dụng Arch Linux, Nginx, PHP và PHP-FMP và tôi không thể hiểu tại sao các tệp php lại tải xuống thay vì chạy.

Đây là nginx.conf của tôi:

#user http;
worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       mime.types;
    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  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   html;
            index  index.html index.htm index.php;
        }

        #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   html;
        }

        # 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$ {
            try_files $uri =404;
        root           html;
            fastcgi_pass   unix:/var/run/php-fpm/php-fpm.sock;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            include        fastcgi_params;
        }

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }


    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


    # HTTPS server
    #
    #server {
    #    listen       443;
    #    server_name  localhost;

    #    ssl                  on;
    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_timeout  5m;

    #    ssl_protocols  SSLv2 SSLv3 TLSv1;
    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers   on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}

    server {
    listen  80;
    server_name arch;
    access_log  /srv/http/arch/logs/access.log;
    error_log   /srv/http/arch/logs/error.log;
    location / {
        root    /srv/http/arch/httpdocs;
        index   index.html;
    }
    }

}

Chỉnh sửa để Thêm tệp mime.types:

types {
    text/html                             html htm shtml;
    text/css                              css;
    text/xml                              xml;
    image/gif                             gif;
    image/jpeg                            jpeg jpg;
    application/x-javascript              js;
    application/atom+xml                  atom;
    application/rss+xml                   rss;

    text/mathml                           mml;
    text/plain                            txt;
    text/vnd.sun.j2me.app-descriptor      jad;
    text/vnd.wap.wml                      wml;
    text/x-component                      htc;

    image/png                             png;
    image/tiff                            tif tiff;
    image/vnd.wap.wbmp                    wbmp;
    image/x-icon                          ico;
    image/x-jng                           jng;
    image/x-ms-bmp                        bmp;
    image/svg+xml                         svg;

    application/java-archive              jar war ear;
    application/mac-binhex40              hqx;
    application/msword                    doc;
    application/pdf                       pdf;
    application/postscript                ps eps ai;
    application/rtf                       rtf;
    application/vnd.ms-excel              xls;
    application/vnd.ms-powerpoint         ppt;
    application/vnd.wap.wmlc              wmlc;
    application/vnd.google-earth.kml+xml  kml;
    application/vnd.google-earth.kmz      kmz;
    application/x-7z-compressed           7z;
    application/x-cocoa                   cco;
    application/x-java-archive-diff       jardiff;
    application/x-java-jnlp-file          jnlp;
    application/x-makeself                run;
    application/x-perl                    pl pm;
    application/x-pilot                   prc pdb;
    application/x-rar-compressed          rar;
    application/x-redhat-package-manager  rpm;
    application/x-sea                     sea;
    application/x-shockwave-flash         swf;
    application/x-stuffit                 sit;
    application/x-tcl                     tcl tk;
    application/x-x509-ca-cert            der pem crt;
    application/x-xpinstall               xpi;
    application/xhtml+xml                 xhtml;
    application/zip                       zip;

    application/octet-stream              bin exe dll;
    application/octet-stream              deb;
    application/octet-stream              dmg;
    application/octet-stream              eot;
    application/octet-stream              iso img;
    application/octet-stream              msi msp msm;

    audio/midi                            mid midi kar;
    audio/mpeg                            mp3;
    audio/ogg                             ogg;
    audio/x-realaudio                     ra;

    video/3gpp                            3gpp 3gp;
    video/mpeg                            mpeg mpg;
    video/quicktime                       mov;
    video/x-flv                           flv;
    video/x-mng                           mng;
    video/x-ms-asf                        asx asf;
    video/x-ms-wmv                        wmv;
    video/x-msvideo                       avi;
}

1
Hãy cho chúng tôi thấy đầu ra của nginx -Vphp-fpm -m?
lượng tử

Câu trả lời:


6

Lưu ý để thêm:

Tôi đã trải qua thỏa thuận tương tự, nhưng sau khi áp dụng bản sửa lỗi, ol 'ctrl + shift + r không đủ tốt để làm mới bộ đệm của trình duyệt rằng trang đó là một bản tải xuống -

Sau khi xóa bộ nhớ cache kỹ hơn, nó hoạt động như mong đợi.


1
Tôi đã thử tất cả mọi thứ và không nơi nào xuất hiện "Ghi chú để thêm" của bạn ... Chỉ cần tiết kiệm cho tôi vài giờ đau đớn. Cảm ơn bạn đã lưu ý :)
RonzyFonzy

Tuyệt quá - ! Tôi rất vui vì nó đã giúp ^ _ ^
rm-vanda

4

Tôi đã có thể khắc phục sự cố này, nhưng sự cố tôi dường như có liên quan đến thực tế là tôi vẫn cài đặt Apache trên máy chủ và một số phần của Apache đã mâu thuẫn với khả năng của Nginx đối với các trang php, mặc dù Apache đã không chạy.

Nếu bạn gặp vấn đề tương tự, hãy cố gắng loại bỏ Apache, PHP và tất cả các mô-đun liên quan và cài đặt lại đúng thứ bạn cần.


2

tập tin này có chứa gì không?

(bao gồm mime.types;)

bởi vì nếu không thì tất cả các tệp của bạn sẽ nhận được mime / loại tệp tải xuống

(default_type application / octet-stream;)

Vì vậy, đây là vấn đề của bạn vì php không có trong danh sách

Giải pháp: thêm hàng này vào tệp đó và khởi động lại ngnix

text/php                             php php5;

Có, đã thêm nó vào bài viết gốc

được rồi tôi đã thêm mime / type php mà bạn nên thêm vào tập tin

Cảm ơn đã cho thời gian, nhưng sau khi khởi động lại nginx nó vẫn không hoạt động. Còn ý tưởng nào khác để tôi thử không?

đọc hướng dẫn này adityo.blog.binusian.org/?p=428 và xác minh rằng bạn đã thực hiện tất cả các bước đúng

Tôi đang sử dụng Arch Linux, vì vậy trang đó không thực sự so sánh nhiều như vậy. Đây là trang tôi đã sử dụng: wiki.archlinux.org/index.php/ Khăn

1

Lưu ý rằng cấu hình của bạn nổi bật là không hiệu quả và có khả năng không an toàn. Xem https://www.nginx.com/resource/wiki/start/topics/tutorials/config_pit thác /


1
Xin chào, điều này không đúng Try_files chỉ đặt con trỏ URI bên trong và sau đó tiếp tục xử lý khối vị trí. Khi bạn gửi tới PHP ở cùng một vị trí, nó hoàn toàn ổn.
Martin Fjordvald

Thật. Chỉnh sửa câu trả lời để xóa thông tin không chính xác
Dayo

0

Vị trí của tôi ~ .php trông như thế này. Tại sao bạn không thử nó?

location ~ \.php {
        try_files $uri =404; #This line closes a big security hole
                             #see: http://forum.nginx.org/read.php?2,88845,page=3
        fastcgi_param  QUERY_STRING       $query_string;
        fastcgi_param  REQUEST_METHOD     $request_method;
        fastcgi_param  CONTENT_TYPE       $content_type;
        fastcgi_param  CONTENT_LENGTH     $content_length;

        fastcgi_param  SCRIPT_NAME        $fastcgi_script_name;
        fastcgi_param  SCRIPT_FILENAME    $document_root$fastcgi_script_name;
        fastcgi_param  REQUEST_URI        $request_uri;
        fastcgi_param  DOCUMENT_URI       $document_uri;
        fastcgi_param  DOCUMENT_ROOT      $document_root;
        fastcgi_param  SERVER_PROTOCOL    $server_protocol;

        fastcgi_param  GATEWAY_INTERFACE  CGI/1.1;
        fastcgi_param  SERVER_SOFTWARE    nginx;

        fastcgi_param  REMOTE_ADDR        $remote_addr;
        fastcgi_param  REMOTE_PORT        $remote_port;
        fastcgi_param  SERVER_ADDR        $server_addr;
        fastcgi_param  SERVER_PORT        $server_port;
        fastcgi_param  SERVER_NAME        $server_name;

        fastcgi_pass 127.0.0.1:9000;
}

Đồng thời truy cập /etc/php/php-fpm.conf và thử:

listen = 127.0.0.1:9000
;listen = /var/run/php-fpm/php-fpm.sock

Tôi vừa thử cái này, nó vẫn tải file.
Shane Grant

@ShaneGrant Một người dùng tại arch bbs có cùng vấn đề với bạn và đã giải quyết nó bằng cách xóa apache và php (từ thiết lập trước đó) và cài đặt lại nginx và php. Kiểm tra này: link
George Tasioulis

0

Chạy lệnh sau:

sudo apt-get install php-gettext
sudo nano /etc/nginx/sites-available/default

So sánh mã sau đây với defaulttệp của bạn :

server {
    listen 80 default_server;
    listen [::]:80 default_server ipv6only=on;

    root /usr/share/nginx/html;
    index index.php index.html index.htm;

    server_name localhost;

    location / {
        try_files $uri $uri/ =404;
    }

    error_page 404 /404.html;
    error_page 500 502 503 504 /50x.html;
    location = /50x.html {
        root /usr/share/nginx/html;
    }

    location ~ \.php$ {
        try_files $uri =404;
        fastcgi_split_path_info ^(.+\.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;
    }
}
  • Remove cache từ trình duyệt của bạn
  • Khởi động lại Nginx

sudo systemctl khởi động lại nginx

Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.