4

这个问题与使用 Heroku、django-storages(w/boto for s3)和 CloudFront 来提供静态内容的设置有关。

在过去的几个小时里,我一直在尝试将我的静态文件成功加载到我的 Heroku 应用程序中。我已成功将 Cloudfront 连接到我的 s3 存储桶,似乎存储桶设置正确,但无论出于何种原因,我的价值AWS_STORAGE_BUCKET_NAME似乎没有正确注册。

如果有人对如何调试有任何线索或想法,我将不胜感激。我已经黔驴技穷了。谢谢阅读。

settings.py(重要的东西):

try:
  from settings_local import *
except:
  import s3utils
DEBUG = False
#s3 stuff
DEFAULT_FILE_STORAGE = 's3utils.MediaRootS3BotoStorage'
STATICFILES_STORAGE = 's3utils.StaticRootS3BotoStorage'  
STATIC_URL = 'https://[domain].cloudfront.net/'
#use heroku postgres database
import dj_database_url
DATABASES['default'] =  dj_database_url.config()

s3utils.py

from storages.backends.s3boto import S3BotoStorage
from django.utils.functional import SimpleLazyObject
import os

AWS_ACCESS_KEY_ID = os.environ['AWS_ACCESS_KEY_ID']
AWS_SECRET_ACCESS_KEY = os.environ['AWS_SECRET_ACCESS_KEY']
AWS_STORAGE_BUCKET_NAME = 'static.[website].org'

StaticRootS3BotoStorage = lambda: S3BotoStorage(location='static')
MediaRootS3BotoStorage  = lambda: S3BotoStorage(location='media')

这是我在尝试收集静态时得到的回溯,无论是通过“heroku run”还是在 Procfile 中:

  Traceback (most recent call last):
  File "manage.py", line 10, in <module>
    execute_from_command_line(sys.argv)
  File "/app/.heroku/python/lib/python2.7/site-packages/django/core/management/__init__.py", line 443, in execute_from_command_line
    utility.execute()
  File "/app/.heroku/python/lib/python2.7/site-packages/django/core/management/__init__.py", line 382, in execute
    self.fetch_command(subcommand).run_from_argv(self.argv)
  File "/app/.heroku/python/lib/python2.7/site-packages/django/core/management/base.py", line 196, in run_from_argv
    self.execute(*args, **options.__dict__)
  File "/app/.heroku/python/lib/python2.7/site-packages/django/core/management/base.py", line 232, in execute
    output = self.handle(*args, **options)
  File "/app/.heroku/python/lib/python2.7/site-packages/django/core/management/base.py", line 371, in handle
    return self.handle_noargs(**options)
  File "/app/.heroku/python/lib/python2.7/site-packages/django/contrib/staticfiles/management/commands/collectstatic.py", line 163, in handle_noargs
    collected = self.collect()
  File "/app/.heroku/python/lib/python2.7/site-packages/django/contrib/staticfiles/management/commands/collectstatic.py", line 113, in collect
    handler(path, prefixed_path, storage)
  File "/app/.heroku/python/lib/python2.7/site-packages/django/contrib/staticfiles/management/commands/collectstatic.py", line 287, in copy_file
    if not self.delete_file(path, prefixed_path, source_storage):
  File "/app/.heroku/python/lib/python2.7/site-packages/django/contrib/staticfiles/management/commands/collectstatic.py", line 215, in delete_file
    if self.storage.exists(prefixed_path):
  File "/app/.heroku/python/lib/python2.7/site-packages/storages/backends/s3boto.py", line 284, in exists
    return k.exists()
  File "/app/.heroku/python/lib/python2.7/site-packages/boto/s3/key.py", line 399, in exists
    return bool(self.bucket.lookup(self.name))
  File "/app/.heroku/python/lib/python2.7/site-packages/boto/s3/bucket.py", line 148, in lookup
    return self.get_key(key_name, headers=headers)
  File "/app/.heroku/python/lib/python2.7/site-packages/boto/s3/bucket.py", line 181, in get_key
    query_args=query_args)
  File "/app/.heroku/python/lib/python2.7/site-packages/boto/s3/connection.py", line 458, in make_request
    auth_path = self.calling_format.build_auth_path(bucket, key)
  File "/app/.heroku/python/lib/python2.7/site-packages/boto/s3/connection.py", line 92, in build_auth_path
    path = '/' + bucket
TypeError: cannot concatenate 'str' and 'NoneType' objects

请注意,我省略了域名等,我实际上在代码中没有 [domain] 或 [website]。

4

1 回答 1

14

你不是说from s3utils import *,所以AWS_STORAGE_BUCKET_NAME永远不会导入到设置模块中。

S3BotoStorage将从环境变量中提取AWS_ACCESS_KEY_ID和提取,但必须在. 这似乎是一个奇怪的不一致,但我认为这是因为and实际上是参数而不是(将从环境变量中提取凭据)。*AWS_SECRET_ACCESS_KEYAWS_STORAGE_BUCKET_NAMEsettings.pyAWS_ACCESS_KEY_IDAWS_SECRET_ACCESS_KEYbotoAWS_STORAGE_BUCKET_NAMEboto

对 s3utils 的其他引用是明确的:

DEFAULT_FILE_STORAGE = 's3utils.MediaRootS3BotoStorage'
STATICFILES_STORAGE = 's3utils.StaticRootS3BotoStorage'

因此,唯一没有处理的设置是AWS_STORAGE_BUCKET_NAME,这会导致您的错误。

*我希望 django-storages 接受来自 env vars 的其他设置(12-Factor App,有人吗?),并且正在考虑打开一个问题/提交一个拉取请求。

于 2013-04-10T21:24:27.920 回答