我想把 /* 指定到我的后端程序, 但是单独把 / 指定到一个静态文件 /myapp/static/index.html
如果是
location = / {
alias /myapp/static/index.html;
}
location / {
proxy_pass http://127.0.0.1:8000;
}
会导致 error log: "/myapp/static/index.htmlindex.html" is not a directory
如果
location = / {
alias /myapp/static/;
}
就会 404, 这是要闹哪样。
怎么才能指定 / 到那个 index.html 呢?