server
{
listen 80;
server_name www.xxx.cc;
set $base_path "/xxx/xxx";
root "${base_path}/vue/dist";
index index.html;
location / {
try_files $uri $uri/ /index.html$is_args$args;
if (!-f $request_filename) {
proxy_pass http://www.xxx1.cc;
}
}
location /bb/ {
alias "${base_path}/vue1/dist/";
index index.html index.htm;
try_files $uri $uri/ /index.html$is_args$args;
}
location /bbapi/ {
proxy_pass http://127.0.0.1:8095/;
}
}
现在必须是 www.xxx.cc/index.html 才能访问,try_files 没生效,想默认走前端,前端找不到就代理到后端。如果去掉 if ,try_files 有效,但后端访问不能有前缀。该怎么改?
还有如果加上 upstream
upstream xxx_server_name{
server http://www.xxx1.cc;
}
server
{
listen 80;
server_name www.xxx.cc;
set $base_path "/xxx/xxx";
root "${base_path}/vue/dist";
index index.html;
location / {
try_files $uri $uri/ /index.html$is_args$args;
if (!-f $request_filename) {
proxy_pass http:/xxx_server_name;
}
}
location /bb/ {
alias "${base_path}/vue1/dist/";
index index.html index.htm;
try_files $uri $uri/ /index.html$is_args$args;
}
location /bbapi/ {
proxy_pass http://127.0.0.1:8095/;
}
}
这样改了就代理就不到后端去了,求教大佬们
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.