Added variables to connect to Amazon S3 directly
This commit is contained in:
parent
818d78344f
commit
2600631528
|
@ -320,10 +320,11 @@ if AWS_ACCESS_KEY_ID:
|
||||||
AWS_SECRET_ACCESS_KEY = env("AWS_SECRET_ACCESS_KEY")
|
AWS_SECRET_ACCESS_KEY = env("AWS_SECRET_ACCESS_KEY")
|
||||||
AWS_STORAGE_BUCKET_NAME = env("AWS_STORAGE_BUCKET_NAME")
|
AWS_STORAGE_BUCKET_NAME = env("AWS_STORAGE_BUCKET_NAME")
|
||||||
AWS_S3_ENDPOINT_URL = env("AWS_S3_ENDPOINT_URL", default=None)
|
AWS_S3_ENDPOINT_URL = env("AWS_S3_ENDPOINT_URL", default=None)
|
||||||
|
AWS_S3_REGION_NAME = env("AWS_S3_REGION_NAME", default=None)
|
||||||
|
AWS_S3_SIGNATURE_VERSION = "s3v4"
|
||||||
AWS_LOCATION = env("AWS_LOCATION", default="")
|
AWS_LOCATION = env("AWS_LOCATION", default="")
|
||||||
DEFAULT_FILE_STORAGE = "storages.backends.s3boto3.S3Boto3Storage"
|
DEFAULT_FILE_STORAGE = "storages.backends.s3boto3.S3Boto3Storage"
|
||||||
|
|
||||||
|
|
||||||
# See: https://docs.djangoproject.com/en/dev/ref/contrib/staticfiles/#std:setting-STATICFILES_DIRS
|
# See: https://docs.djangoproject.com/en/dev/ref/contrib/staticfiles/#std:setting-STATICFILES_DIRS
|
||||||
STATICFILES_DIRS = (str(APPS_DIR.path("static")),)
|
STATICFILES_DIRS = (str(APPS_DIR.path("static")),)
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
Added env variable to set AWS region and signature version to serve media without proxy (#826)
|
|
@ -160,3 +160,12 @@ AWS_STORAGE_BUCKET_NAME=
|
||||||
# the full URL to the storage server. Example:
|
# the full URL to the storage server. Example:
|
||||||
# AWS_S3_ENDPOINT_URL=https://minio.mydomain.com
|
# AWS_S3_ENDPOINT_URL=https://minio.mydomain.com
|
||||||
# AWS_S3_ENDPOINT_URL=
|
# AWS_S3_ENDPOINT_URL=
|
||||||
|
|
||||||
|
# If you want to serve media directly from your S3 bucket rather than through a proxy,
|
||||||
|
# set this to true
|
||||||
|
# PROXY_MEDIA=false
|
||||||
|
|
||||||
|
# If you are using Amazon S3 to serve media directly, you will need to specify your region
|
||||||
|
# name in order to access files. Example:
|
||||||
|
# AWS_S3_REGION_NAME=eu-west-2
|
||||||
|
# AWS_S3_REGION_NAME=
|
||||||
|
|
|
@ -70,6 +70,11 @@ then issue a 302 redirect to the file URL in the bucket.
|
||||||
This URL is actually be visible by the client, but contains a signature valid only for one hour, to ensure
|
This URL is actually be visible by the client, but contains a signature valid only for one hour, to ensure
|
||||||
no one can reuse this URL or share it publicly to distribute unauthorized content.
|
no one can reuse this URL or share it publicly to distribute unauthorized content.
|
||||||
|
|
||||||
|
.. note::
|
||||||
|
|
||||||
|
If you are using Amazon S3, you will need to set your ``AWS_S3_REGION_NAME`` in the ``.env`` file to
|
||||||
|
use this feature.
|
||||||
|
|
||||||
.. note::
|
.. note::
|
||||||
|
|
||||||
Since some Subsonic clients don't support 302 redirections, Funkwhale will ignore
|
Since some Subsonic clients don't support 302 redirections, Funkwhale will ignore
|
||||||
|
|
Loading…
Reference in New Issue