Nginx+;web.py+;fastcgi错误:未找到

Nginx+;web.py+;fastcgi错误:未找到,nginx,fastcgi,web.py,Nginx,Fastcgi,Web.py,错误是未找到,并且Nginx没有错误,我已经检查了/var/log/Nginx/error.log文件,它是空的。那么错误来自哪里呢 名为app.py的python文件是可以原谅的,app.py的内容与位于/etc/Nginx/sites available/的名为default的Nginx配置文件相同,我只是在其中添加了一些内容: location / { #below is what I added include /etc/nginx/fastcgi_params;

错误是
未找到
,并且Nginx没有错误,我已经检查了
/var/log/Nginx/error.log
文件,它是空的。那么错误来自哪里呢

名为
app.py
的python文件是可以原谅的,
app.py
的内容与位于
/etc/Nginx/sites available/
的名为
default
的Nginx配置文件相同,我只是在其中添加了一些内容:

location / {
      #below is what I added
      include /etc/nginx/fastcgi_params;
      fastcgi_pass 127.0.0.1:8080
}

有人知道应用程序无法路由的原因吗???

好吧,我想出来了,这是我的Nginx配置文件:

server {
    listen   80; ## listen for ipv4; this line is default and implied
    #listen   [::]:80 default_server ipv6only=on; ## listen for ipv6

    #root /usr/share/nginx/www;
    root  /var/www/app/;
    #index index.html index.htm;

    # Make site accessible from http://localhost/
    server_name 10.100.20.107;

    location / {
        # First attempt to serve request as file, then
        # as directory, then fall back to displaying a 404.
        # try_files $uri $uri/ /;
        # Uncomment to enable naxsi on this location
        # include /etc/nginx/naxsi.rules

        fastcgi_param REQUEST_METHOD $request_method;
        fastcgi_param QUERY_STRING $query_string;
        fastcgi_param CONTENT_TYPE $content_type;
        fastcgi_param CONTENT_LENGTH $content_length;
        fastcgi_param GATEWAY_INTERFACE CGI/1.1;
        fastcgi_param SERVER_SOFTWARE nginx/$nginx_version;
        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_param SERVER_PROTOCOL $server_protocol;
        fastcgi_param SCRIPT_FILENAME $fastcgi_script_name;
        fastcgi_param PATH_INFO $fastcgi_script_name;
        #fastcgi_index app.py;
        fastcgi_pass 127.0.0.1:8080;
    }
    location /static/ {
        root /var/www/app;
        if (-f $request_filename) {
            rewrite ^/static/(.*)$ /static/$1 break;
        }
    }