Nginx द्वारा संसाधित के बजाय PHP फाइलें क्यों डाउनलोड की जाती हैं?


12

मैंने उसी समस्या को देखा है, और इसके लिए कई संकल्प टाइप हैंडलर को जोड़ने के लिए इशारा करते हैं, लेकिन यह अपाचे के लिए था।

मैं आर्क लिनक्स, नग्नेक्स, पीएचपी और पीएचपी-एफएमपी का उपयोग कर रहा हूं और मैं यह पता नहीं लगा सकता कि पीएचपी फाइलें चलने के बजाय क्यों डाउनलोड हो रही हैं।

यहाँ मेरा nginx.conf है:

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

}

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
कृपया हमें के उत्पादन में दिखाने के nginx -Vऔर php-fpm -m?
क्वांटा

जवाबों:


6

जोड़ने के लिए ध्यान दें:

मैं उसी सौदे से गुज़रा, लेकिन फिक्स लागू करने के बाद, ब्राउज़र के कैश को रीफ्रेश करने के लिए ol 'ctrl + shift + r इतना अच्छा नहीं था कि पेज डाउनलोड हो जाता -

कैश को अधिक अच्छी तरह से मिटाने के बाद, इसने उम्मीद के मुताबिक काम किया।


1
मैंने सब कुछ करने की कोशिश की और कहीं से भी आपके "नोट जोड़ने के लिए" आता है ... बस मुझे कुछ परेशान करने वाले घंटे बचाए। नोट के लिए धन्यवाद :)
RonzyFonzy

महान - ! मुझे खुशी है कि इसने ^ _ ^
rm-vanda

4

मैं इस मुद्दे को ठीक करने में सक्षम था, लेकिन मुझे जो समस्या थी, वह इस तथ्य से संबंधित है कि मेरे पास अभी भी सर्वर पर अपाचे सेटअप था, और अपाचे का कुछ हिस्सा नग्नेक्स की सर्वर php पृष्ठों की क्षमता के साथ संघर्ष कर रहा था, यहां तक ​​कि अपाचे भी नहीं चल रहा था।

यदि आप एक ही मुद्दे में भाग लेते हैं, तो Apache, PHP और सभी संबंधित मॉड्यूल को हटाने का प्रयास करें, और बस आपको जो चाहिए, उसे पुनः स्थापित करें।


2

क्या इस फ़ाइल में कुछ भी है?

(mime.types शामिल हैं;)

क्योंकि यदि ऐसा नहीं है तो आपकी सभी फाइलें एक डाउनलोड फ़ाइल का माइम / प्रकार प्राप्त कर रही हैं

(default_type एप्लिकेशन / ऑक्टेट-स्ट्रीम)

तो यह आपकी समस्या है क्योंकि php सूची में नहीं है

समाधान: इस पंक्ति को उस फ़ाइल में जोड़ें और ngnix को पुनरारंभ करें

text/php                             php php5;

हां, इसे मूल पोस्ट में जोड़ा गया

ठीक है, मैंने php माइम / प्रकार जोड़ा है जिसे आपको फ़ाइल में जोड़ना चाहिए

समय के लिए धन्यवाद, लेकिन nginx को पुनरारंभ करने के बाद भी यह काम नहीं कर रहा है। मेरे लिए कोई अन्य विचार करने की कोशिश?

इस गाइड को पढ़ने के adityo.blog.binusian.org/?p=428 और सत्यापित करें कि आप सभी चरणों सही बनाया

मैं आर्क लिनक्स का उपयोग कर रहा हूं, इसलिए वह पृष्ठ वास्तव में उस सब की तुलना नहीं करता है। यहाँ वह पृष्ठ है जिसका मैंने उपयोग किया: wiki.archlinux.org/index.php/…

1

ध्यान दें कि आपका कॉन्फ़िगरेशन अक्षम और संभावित असुरक्षित होने के रूप में बाहर खड़ा है। Https://www.nginx.com/resources/wiki/start/topics/tutorials/config_pitashes/ देखें


1
हाय, यह सच नहीं है। Try_files बस आंतरिक URI पॉइंटर सेट करता है और फिर स्थान ब्लॉक को संसाधित करना जारी रखता है। जब आप एक ही स्थान पर PHP भेजते हैं तो यह पूरी तरह से ठीक है।
मार्टिन फेजर्डवाल्ड

वास्तव में। गलत जानकारी को दूर करने के लिए उत्तर का संपादन किया
Dayo

0

मेरा स्थान ~ .php इस तरह दिखता है। आप इसकी कोशिश क्यों नहीं करते?

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

इसके अलावा /etc/php/php-fpm.conf पर जाएं और कोशिश करें:

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

मैं सिर्फ यह कोशिश की, यह अभी भी फ़ाइल डाउनलोड करता है।
शेन ग्रांट

@ShaneGrant आर्क बीबीएस का एक उपयोगकर्ता आपके साथ एक ही समस्या है, और इसे एपाचे और php को हटाकर (पिछले सेटअप से) और nginx और php को फिर से पुनर्स्थापित करके हल किया है। इसे देखें: लिंक
जॉर्ज तासीउलिस

0

निम्न आदेश चलाएँ:

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

अपनी defaultफ़ाइल के साथ निम्न कोड की तुलना करें :

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 आपके ब्राउज़र से
  • Nginx को पुनरारंभ करें

sudo systemctl पुनरारंभ नग्नेक्स

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.