我有一個應用程序,帶有兩個路由器主頁和結果。在主頁,我必須去我們的授權微服務和返回到我的反應的應用程序,結果頁面,但result.html文件不存在,因爲是一個反應的應用程序,所以我得到404錯誤。在nginx服務器上反應路由器應用程序
我想下面的配置我的nginx:
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log /var/log/nginx/log/host.access.log main;
location/{
root /usr/share/nginx/html;
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
# Any route that doesn't have a file extension (e.g. /devices)
location/{
try_files $uri $uri/ /results.html;
}
}
,但仍然沒有工作。請提供任何建議。
當你說「我有沒有HTML文件,因爲它是一個反應的應用程序「,你的意思是你在你的服務器執行webpack? – Vashnak
您是否創建了一些服務器來顯示您的React JS文件? – ickyrr
您需要在'express'或任何Web服務器上運行您的React JS應用程序才能使其工作。 – ickyrr