具有多个位置块的nginx配置+ React + Nginx

问题描述 投票:-1回答:1

我正在尝试为2个不同的位置配置nginx。一世这是我的情况。

www.example.com位置:/var/www/example.com

example.com/panel位置:/var/www/example.com/panel

django reactjs nginx nginx-location nginx-config
1个回答
0
投票

尝试使用:http://nginx.org/en/docs/http/ngx_http_core_module.html#try_files

location ^~ /root {
    root /var/www/example.com;
    index index.html index.htm;
}
location ^~ /root/react_app(or panel) {
    root /var/www/example.com;
    index index.html index.htm;
    try_files $uri $uri/ /root/react_app/index.html;
}
© www.soinside.com 2019 - 2024. All rights reserved.