diff options
author | 2022-11-11 12:03:18 +0100 | |
---|---|---|
committer | 2022-11-11 12:03:18 +0100 | |
commit | 948e90b95aa71a635fe5933e6e4a01823db6ac86 (patch) | |
tree | ad4c575d9e09618d0deb01fb572e9342c659ad74 /testrig | |
parent | [chore] close in-storage media reader _before_ opening write, no need to leav... (diff) | |
download | gotosocial-948e90b95aa71a635fe5933e6e4a01823db6ac86.tar.xz |
[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>
Diffstat (limited to 'testrig')
-rw-r--r-- | testrig/storage.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testrig/storage.go b/testrig/storage.go index a5f2ccfd0..657c81161 100644 --- a/testrig/storage.go +++ b/testrig/storage.go @@ -48,7 +48,7 @@ func NewS3Storage() gtsstorage.Driver { if err != nil { panic(err) } - return gtsstorage.NewS3(mc, os.Getenv("GTS_STORAGE_S3_BUCKET")) + return gtsstorage.NewS3(mc, os.Getenv("GTS_STORAGE_S3_BUCKET"), false) } // StandardStorageSetup populates the storage with standard test entries from the given directory. |