reactjs – 如何配置我的Nginx服务器以使用子文件夹中的React应用程序?

前端之家收集整理的这篇文章主要介绍了reactjs – 如何配置我的Nginx服务器以使用子文件夹中的React应用程序?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我试图在我的Nginx服务器上的子文件夹中部署React应用程序.

此React应用程序的位置结构如下:www.example.com/reactApp.

我尝试设置我当前的Nginx.conf,如下所示:

server {
    ..other configs..

    location /reactApp {
        root /var/www;
        index reactApp/index.html;
        try_files $uri $uri/ /index.html;
    }  

    ..other configs..
}
@H_502_12@

这没效果.我需要更改什么才能修复子文件夹路由?

最佳答案
try_files语句的最后一个组件应该是URI.假设您的index.html文件位于/ var / www / reactApp子文件夹下,您应该使用:

location /reactApp {
    root /var/www;
    index  index.html;
    try_files $uri $uri/ /reactApp/index.html;
}
@H_502_12@

有关更多信息,请参见this document

原文链接:/nginx/434336.html

猜你在找的Nginx相关文章