为什么我的Nginx服务器仅显示我的index.html?

时间:2019-01-23 21:16:10

标签: nginx

我有两个nginx服务器,一个是proxy_pass,另一个是托管Web和其他服务的位置。 问题是,当我访问页面时,只能看到index.html。如果我尝试去“联系”,他说他找不到文件。

我的proxy_pass配置文件:

location / {
        try_files $uri $uri/ =404;
        proxy_pass http://192.168.0.100$request_uri;
        }

location ~ \.(jpe?g|png|gif|ico)$ {
        proxy_pass http://192.168.0.100$request_uri;
        }
location /somedirectory/ {
    autoindex on;
}

location ~ \.php$ {
                include snippets/fastcgi-php.conf;
                fastcgi_pass unix:/run/php/php7.0-fpm.sock;
                proxy_pass http://192.168.0.100$request_uri;
}

我的第二个服务器配置文件:

location / {
        try_files $uri $uri/ =404;
        }


location ~ \.php$ {
                include snippets/fastcgi-php.conf;
                fastcgi_pass unix:/run/php/php7.0-fpm.sock;

}

有什么解决方案可以查看我网站上的所有文件吗?谢谢

0 个答案:

没有答案