Compare commits

...

2 commits

Author SHA1 Message Date
Tobias Genannt d24afeecb0
Merge pull request #1576 from matandomuertos/fix-storages-example
Some checks are pending
push / Checks syntax of our code (push) Waiting to run
push / Builds new NetBox Docker Images (./build-latest.sh, ubuntu-24.04) (push) Waiting to run
push / Builds new NetBox Docker Images (./build-latest.sh, ubuntu-24.04-arm) (push) Waiting to run
push / Builds new NetBox Docker Images (./build.sh feature, ubuntu-24.04) (push) Waiting to run
push / Builds new NetBox Docker Images (./build.sh feature, ubuntu-24.04-arm) (push) Waiting to run
push / Builds new NetBox Docker Images (./build.sh main, ubuntu-24.04) (push) Waiting to run
push / Builds new NetBox Docker Images (./build.sh main, ubuntu-24.04-arm) (push) Waiting to run
push / Builds new NetBox Docker Images (PRERELEASE=true ./build-latest.sh, ubuntu-24.04) (push) Waiting to run
push / Builds new NetBox Docker Images (PRERELEASE=true ./build-latest.sh, ubuntu-24.04-arm) (push) Waiting to run
Update STORAGES example in extra.py
2025-12-09 16:27:33 +01:00
Nahuel Cassinari ac419312ae
Update STORAGES example 2025-12-09 15:27:25 +01:00

View file

@ -33,13 +33,20 @@
## 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 in STORAGE_BACKEND and any configuration options in STORAGE_CONFIG. For example: ## class path of the storage driver and any configuration options in STORAGES. For example:
# STORAGE_BACKEND = 'storages.backends.s3boto3.S3Boto3Storage' # STORAGES = {
# STORAGE_CONFIG = { # 'default': {
# 'AWS_ACCESS_KEY_ID': 'Key ID', # 'BACKEND': 'storages.backends.s3boto3.S3Boto3Storage',
# 'AWS_SECRET_ACCESS_KEY': 'Secret', # 'OPTIONS': {
# 'AWS_STORAGE_BUCKET_NAME': 'netbox', # 'access_key': 'Key ID',
# 'AWS_S3_REGION_NAME': 'eu-west-1', # 'secret_key': 'Secret',
# 'bucket_name': 'netbox',
# 'region_name': 'us-west-1',
# }
# },
# 'staticfiles': {
# 'BACKEND': 'django.contrib.staticfiles.storage.StaticFilesStorage',
# }
# } # }