mirror of
https://github.com/superseriousbusiness/gotosocial
synced 2025-06-05 21:59:39 +02:00
[feature] S3: add config flag to proxy S3 media (#1014)
* S3: add config value "proxy" for not redirecting Signed-off-by: Mara Sophie Grosch <littlefox@lf-net.org> * S3: document new config value "proxy" * S3: add new config value "proxy" to test scripts Signed-off-by: Mara Sophie Grosch <littlefox@lf-net.org>
This commit is contained in:
committed by
GitHub
parent
3ce0e33f99
commit
948e90b95a
@@ -59,7 +59,11 @@ func AutoConfig() (Driver, error) {
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("creating minio client: %w", err)
|
||||
}
|
||||
return NewS3(mc, config.GetStorageS3BucketName()), nil
|
||||
return NewS3(
|
||||
mc,
|
||||
config.GetStorageS3BucketName(),
|
||||
config.GetStorageS3Proxy(),
|
||||
), nil
|
||||
case "local":
|
||||
basePath := config.GetStorageLocalBasePath()
|
||||
disk, err := storage.OpenDisk(basePath, &storage.DiskConfig{
|
||||
|
Reference in New Issue
Block a user