Heim  >  Artikel  >  Backend-Entwicklung  >  Nginx unter Windows fordert keine Eingabedatei an. Ich habe die Konfiguration online verfolgt?

Nginx unter Windows fordert keine Eingabedatei an. Ich habe die Konfiguration online verfolgt?

WBOY
WBOYOriginal
2016-09-12 17:44:521286Durchsuche

<code>server {
        listen       80;
        server_name  m.test.com;

        
        ## Root and index files.
        root html/test;
        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   html;
        }

         location / {
            # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
            #
            location ~ \.php$ {
                root           html;
                fastcgi_pass   127.0.0.1:9000;
                fastcgi_index  index.php;
                fastcgi_param  SCRIPT_FILENAME    $document_root$fastcgi_script_name;
                include        fastcgi_params;
            }
         }

       

       
    }
</code>

Nginx unter Windows fordert keine Eingabedatei an. Ich habe die Konfiguration online verfolgt?

Antwortinhalt:

<code>server {
        listen       80;
        server_name  m.test.com;

        
        ## Root and index files.
        root html/test;
        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   html;
        }

         location / {
            # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
            #
            location ~ \.php$ {
                root           html;
                fastcgi_pass   127.0.0.1:9000;
                fastcgi_index  index.php;
                fastcgi_param  SCRIPT_FILENAME    $document_root$fastcgi_script_name;
                include        fastcgi_params;
            }
         }

       

       
    }
</code>

Nginx unter Windows fordert keine Eingabedatei an. Ich habe die Konfiguration online verfolgt?

Das könnte das Problem sein: root html
Möglicherweise müssen Sie es vollständig schreiben: root /html

Am besten verwenden Sie unter Windows eine absolute Adresse für Ihr Stammverzeichnis, z. B. D:/www

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn