现象
刷新404
解决
nginx修改配置
我这个是nginx配置前端在/opt/www下
location /admin-template {
alias /opt/www/admin-template;
try_files $uri $uri/ /admin-template/index.html;
index index.html index.htm;
}
附nginx 完整配置
#user nobody;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
#网站主页路径。此路径仅供参考,具体请您按照实际目录操作。
#例如,您的网站主页在 Nginx 服务器的 /etc/www 目录下,则请修改 root 后面的 html 为 /etc/www。
root /opt/www;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
location /admin-template {
alias /opt/www/admin-template;
try_files $uri $uri/ /admin-template/index.html;
index index.html index.htm;
}
location /handtour-api/ {
proxy_pass http://10.2.8.14:31888/handtour/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location /device-admin {
alias /opt/www/device-admin;
try_files $uri $uri/ /device-admin/index.html;
index index.html index.htm;
}
location /prod-api/ {
proxy_pass http://10.2.8.14:38080/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location /sci-manage-api/ {
proxy_pass http://10.2.8.14:38090/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location /similarity-api/ {
proxy_pass http://10.2.8.14:8099/similarity-api/rest/;
}
#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 html;
}
}
}