nginx + php-fpm = File not found

前端 未结 8 1725
孤街浪徒
孤街浪徒 2021-02-07 01:25

When i try accessing info.php I get a File not found. error.

I tried some Tutorials to no avail.

Configs: default:

ser         


        
8条回答
  •  终归单人心
    2021-02-07 01:59

    server {
    listen         80;
    listen   [::]:80 default ipv6only=on; 
    server_name  localhost;
    root   /var/www;
    location / {
        index index.php;
    }
    location ~ \.php(?:$|/) {
       fastcgi_pass 127.0.0.1:7777;
       fastcgi_index  index.php;
       fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
       fastcgi_buffers 256 128k;
       fastcgi_connect_timeout 300s;
       fastcgi_send_timeout 300s;
       fastcgi_read_timeout 300s;
       include fastcgi_params;
    }
    

    }

提交回复
热议问题