reactjs-nginx尝试根据uri在目录中查找index.html

前端之家收集整理的这篇文章主要介绍了reactjs-nginx尝试根据uri在目录中查找index.html 前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我有一个简单的配置让Nginx服务我的React应用程序:

server {
    listen 80;
    root /usr/share/Nginx/html;

    location / {
        try_files $uri $uri/ /index.html;
    }
}

我有路线/并登录.当我通过React-Router从localhost /登录到localhost /时,一切正常.但是,当我在浏览器中键入localhost / login时,出现404错误.

确切地说,对于localhost / login,我在Nginx控制台中得到“ /usr/share / Nginx / html / login”失败(2:没有这样的文件或目录).
并且对于localhost / login /我得到的是“ /usr/share/Nginx/html/login/index.html”,找不到(2:没有这样的文件或目录)

我不明白为什么Nginx会继续在/usr/share / Nginx / html / login /中而不是/usr/share / Nginx / html /中寻找index.html.有什么想法我做错了吗?

最佳答案
好的,我的不好,看来我只是搞砸了配置文件.
在我的Dockerfile中,我做了以下工作

COPY Nginx/default.conf /etc/Nginx/conf.default 

而很明显,Nginx不在conf.default文件中寻找配置.

所以我创建了Nginx.conf文件

events {
    worker_connections  1024;
}

http {
    server {
        listen 80;
        root /usr/share/Nginx/html;

        location / {
            try_files $uri $uri/ /index.html;
        }
    }
}

并在Dockerfile中写道:

COPY Nginx/Nginx.conf /etc/Nginx/Nginx.conf

解决了问题.感谢帮助!

原文链接:https://www.f2er.com/nginx/532361.html

猜你在找的Nginx相关文章