Compare commits

..

No commits in common. "d24afeecb0d6801a094e72c02fb506235adfa0f0" and "95c201f41681f5d8a136f35c5b496d70e747fe25" have entirely different histories.

View file

@ -33,20 +33,13 @@
## By default uploaded media is stored on the local filesystem. Using Django-storages is also supported. Provide the ## By default uploaded media is stored on the local filesystem. Using Django-storages is also supported. Provide the
## class path of the storage driver and any configuration options in STORAGES. For example: ## class path of the storage driver in STORAGE_BACKEND and any configuration options in STORAGE_CONFIG. For example:
# STORAGES = { # STORAGE_BACKEND = 'storages.backends.s3boto3.S3Boto3Storage'
# 'default': { # STORAGE_CONFIG = {
# 'BACKEND': 'storages.backends.s3boto3.S3Boto3Storage', # 'AWS_ACCESS_KEY_ID': 'Key ID',
# 'OPTIONS': { # 'AWS_SECRET_ACCESS_KEY': 'Secret',
# 'access_key': 'Key ID', # 'AWS_STORAGE_BUCKET_NAME': 'netbox',
# 'secret_key': 'Secret', # 'AWS_S3_REGION_NAME': 'eu-west-1',
# 'bucket_name': 'netbox',
# 'region_name': 'us-west-1',
# }
# },
# 'staticfiles': {
# 'BACKEND': 'django.contrib.staticfiles.storage.StaticFilesStorage',
# }
# } # }