fix(backend): fix minio settings (#8878)

* fix minio settings

* remove port exposure on 9000
This commit is contained in:
Ulf Gebhardt 2025-09-15 11:20:09 +02:00 committed by GitHub
parent c4cd51ee65
commit d414b56344
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -16,7 +16,7 @@ export const TEST_CONFIG = {
PRODUCTION_DB_CLEAN_ALLOW: false,
DISABLED_MIDDLEWARES: [],
SEND_MAIL: false,
PROXY_S3: 'http://minio:9000',
PROXY_S3: 'http://localhost:9000',
CLIENT_URI: 'http://webapp:3000',
GRAPHQL_URI: 'http://localhost:4000',
@ -39,7 +39,7 @@ export const TEST_CONFIG = {
AWS_ACCESS_KEY_ID: 'minio',
AWS_SECRET_ACCESS_KEY: '12341234',
AWS_ENDPOINT: 'http:/minio:9000',
AWS_ENDPOINT: 'http:/localhost:9000',
AWS_REGION: 'local',
AWS_BUCKET: 'ocelot',