作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想了解 Firebase 中存储规则部署的工作原理。
在 Firebase Storage 中,我有 2 个存储桶 app.appspot.com
和 app-mybucket
。在我的本地计算机上,我有一个 storage.rules
文件,如下所示:
service firebase.storage {
match /b/app.appspot.com/o {
match /{allPaths=**} {
allow read, write: if request.auth != null;
}
}
match /b/app-mybucket/o {
match /{userId}/{allPaths=**} {
allow read, write: if request.auth.uid == userId;
}
}
}
当我firebase deploy --only storage
时,这些规则被发送到默认的app.appshpot.com
存储桶,并且似乎没有任何内容被发送到app- mybucket
。我想知道如何将规则部署到所有存储桶。
最佳答案
在 firebase.json 文件中,您可以指定如下内容:
"storage": [{
"rules": "my-appspot.rules",
"bucket": "app.appspot.com"
},
{
"rules": "my-bucket.rules",
"bucket": "app-mybucket"
}]
上面的示例对每个存储桶使用不同的规则,如果您愿意,您也可以对每个存储桶使用相同的规则。
关于firebase - 如何将 Firebase 存储规则部署到特定存储桶?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53638998/
我是一名优秀的程序员,十分优秀!