简体   繁体   English

用nginx和php找不到文件

[英]File not found with nginx and php

I try to run node js and php on the same domain with nginx. 我尝试使用Nginx在同一域上运行Node js和php。 However the location for php ("/ajax") does not work. 但是,php(“ / ajax”)的位置不起作用。 I always get the message "File not found.". 我总是收到消息“找不到文件”。 The nginx logs print Nginx日志打印

The URL is http://localhost:8085/ajax so far, the scripts are located at /var/www/public The folder /ajax does NOT exist (none of the paths do, as everthing shall be redirected to /var/www/public/index.php) 到目前为止,URL是http:// localhost:8085 / ajax ,脚本位于/ var / www / public文件夹/ ajax不存在(路径均不存在,因为所有内容都应重定向到/ var / www /public/index.php)

nginx | nginx | 2017/08/27 20:47:48 [error] 6#6: *6 FastCGI sent in stderr: "Primary script unknown" while reading response header from upstream, client: 172.23.0.1, server: localhost, request: "GET /ajax HTTP/1.1", upstream: "fastcgi://172.23.0.4:9000", host: "localhost:8085" 2017/08/27 20:47:48 [错误] 6#6:* 6从上游读取响应头时,stderr中发送了FastCGI:“主脚本未知”,客户端:172.23.0.1,服务器:localhost,请求:“ GET / ajax HTTP / 1.1”,上游:“ fastcgi://172.23.0.4:9000”,主机:“ localhost:8085”

nginx | nginx | 172.23.0.1 - - [27/Aug/2017:20:47:48 +0000] "GET /ajax HTTP/1.1" 404 27 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36" "-" 172.23.0.1--[27 / Aug / 2017:20:47:48 +0000]“ GET / ajax HTTP / 1.1” 404 27“-”“ Mozilla / 5.0(X11; Linux x86_64)AppleWebKit / 537.36(KHTML,like Gecko)Chrome / 60.0.3112.113 Safari / 537.36“”-“

This is my configuration, what do I have to change? 这是我的配置,我必须更改什么?

upstream react {
    server react:3000;
    keepalive 8;
}

server {
    listen 0.0.0.0:80;

    server_name  localhost;

    location / {
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";

        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header Host $http_host;
        proxy_set_header X-NginX-Proxy true;

        proxy_pass http://react;
        proxy_redirect off;
    }

    location /ajax {
        index index.php index.html;
        root /var/www/public;

        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass app:9000;
        fastcgi_index index.php;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_param PATH_INFO $fastcgi_path_info;
    }

    client_max_body_size 5m;
}

I tried 我试过了

fastcgi_param SCRIPT_FILENAME /var/www/public$fastcgi_script_name; fastcgi_param SCRIPT_FILENAME / var / www / public $ fastcgi_script_name;

as suggested in some threads, but that does not work 如某些线程中所建议,但这不起作用

The current configuration works for me, however /ajax is passed to php-fpm. 当前的配置对我有用,但是/ ajax被传递给php-fpm。 I was not able to get rid of the /ajax prefix in all variables like REQUEST_URI 我无法在所有变量(如REQUEST_URI)中删除/ ajax前缀

upstream react {
    server react:3000;
    keepalive 8;
}

server {
    listen 0.0.0.0:80;

    server_name localhost;

    location / {
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";

        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header Host $http_host;
        proxy_set_header X-NginX-Proxy true;

        proxy_pass http://react;
        proxy_redirect off;
    }

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

    location ~ \.php$ {
        fastcgi_pass app:9000;
        fastcgi_index index.php;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME /var/www/public$fastcgi_script_name;
        fastcgi_param QUERY_STRING    $query_string;
        fastcgi_param PATH_INFO $fastcgi_path_info;
    }

    client_max_body_size 5m;
}

So I have trying to work on your Issue for last 3 days, to get a better and deeper understanding of FASTCGI. 因此,我尝试了过去3天来处理您的问题,以便对FASTCGI有更好,更深入的了解。 I put a logger between and NGINX and FPM, and that helped me better understand the interactions. 我在NGINX和FPM之间放置了一个记录器,这有助于我更好地理解交互。 Below is the config that I believe should work for you 以下是我认为应该为您工作的配置

Edit-1 编辑1

Updated config after resolving issue on chat 解决聊天问题后更新配置

upstream react {
    server react:3000;
    keepalive 8;
}

map $fastcgi_script_name $fastcgi_script_name_fcgi {
    "~*/ajax/(?P<rest_url>.*)$"   /$rest_url;
    default $fastcgi_script_name;
}

map $request_uri $request_uri_fcgi {
    "~*/ajax/(?P<rest_url>.*)$"   /$rest_url;
    default $request_uri;
}

map $document_uri $document_uri_fcgi {
    "~*/ajax/(?P<rest_url>.*)$"   /$rest_url;
    default $document_uri_fcgi;
}

server {
    listen 0.0.0.0:80;

    server_name localhost;

    location / {
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";

        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header Host $http_host;
        proxy_set_header X-NginX-Proxy true;

        proxy_pass http://react;
        proxy_redirect off;
    }

    location /ajax {
        alias /var/www/public;
        try_files $uri @php;
    }

    location @php {
        fastcgi_split_path_info ^/ajax/(.+\.php)(/.+)$;
        fastcgi_pass fpm:9000;
        fastcgi_index index.php;
        include fastcgi_params;
        fastcgi_param  SCRIPT_NAME        /index.php;
        fastcgi_param  REQUEST_URI        $request_uri_fcgi;
        fastcgi_param  DOCUMENT_URI       $document_uri_fcgi;
        fastcgi_param  SCRIPT_FILENAME    /var/www/public/index.php;
    }

    client_max_body_size 5m;
}

So the basic idea is to replace /ajax from document_root using the alias directive. 因此,基本思想是使用alias指令从document_root替换/ajax Then to override the request_uri and other parameters so the correct urls reach the PHP code for route resolution. 然后覆盖request_uri和其他参数,以便正确的URL到达PHP代码以进行路由解析。

Below is part of what my php script receives when I call http://vm/ajax/router.php?x=2 以下是我致电http://vm/ajax/router.php?x=2时我的php脚本收到的部分内容

{
  "COOKIES": null,
  "GET": {
    "x": "2"
  },
  "POST": [],
  "REQUEST": {
    "x": "2"
  },
  "HEADERS": null,
  "SERVER": {
    "HOME": "/var/www",
    "SCRIPT_FILENAME": "/var/www/html/router.php",
    "DOCUMENT_ROOT": "/var/www/html",
    "DOCUMENT_URI": "/router.php",
    "REQUEST_URI": "/router.php?x=2",
    "SCRIPT_NAME": "/router.php",
    "CONTENT_LENGTH": "",
    "CONTENT_TYPE": "",
    "REQUEST_METHOD": "GET",
    "QUERY_STRING": "x=2",
    "FCGI_ROLE": "RESPONDER",
    "PHP_SELF": "/router.php",
    "argv": [
      "x=2"
    ],
    "argc": 1
  }
}

As you can see nothing gets /ajax 如您所见,没有任何东西/ajax

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM