我的应用程序将在两个位置提供静态文件,一个是 /my/path/project/static,另一个是 /my/path/project/jsutils/static。
我很难让网络服务器在两个目录中查找静态内容。这是我的应用程序的 nginx 配置文件中的静态位置条目。
location ^~ /static {
root /my/path/project/static;
alias /my/path/project/jsutils/static;
index index.html index.htm;
}
我收到一条错误消息:“别名”指令重复,“根”指令已在前面指定。
我不确定如何让 nginx 在这两个路径中查找静态内容。
预先感谢您的任何帮助。