我一直在为 heroku 上的朋友更新应用程序。所有应用程序和 heroku 安装都是由其他人设置的。
因此,我使用来自 github 的新代码克隆了一个 repo 并进行了更新。当然,推动这些改变需要失败。所以我发出
git push -f production heroku_branch:master
哪里生产:
[remote "production"]
url = git@heroku.com:<our-app-name>.git
fetch = +refs/heads/*:refs/remotes/production/*
这似乎有效,但现在没有显示所有图像。图像在 S3 上。浏览器对所有图像显示 403。然而,发出
heroku config
确认设置了所需的变量 (AMAZON_ACCESS_KEY_ID,AMAZON_SECRET_ACCESS_KEY,S3_BUCKET_NAME)
我会错过什么?