我正在将带有反应路由器的create-react应用程序模板使用,我想使用nginx将应用程序部署在子文件夹中。
我的nginx.conf文件看起来像这样。 (我正在使用nginx-alpine码头工人图像)
events { }
http {
server {
listen 80;
# You would want to make a separate file with its own server block for each virtual domain
#access_log logs/host.access.log main;
location /procejts/myproject/ {
root /usr/share/nginx/html;
try_files $uri $uri/ /procejts/myproject/index.html;
}
}
}
但是当我访问mydomain.com/procejts/myproject时却得到一个空白页面
我尝试了答案here,但这给了我500错误“重写或内部重定向周期”。我改变了
try_files $uri $uri/ /procejts/myproject/index.html;
收件人
try_files $uri $uri/ =404;
,我开始找不到404。