fix: chatwoot translations and s3 region

This commit is contained in:
Davidson Gomes 2024-08-15 15:41:30 -03:00
parent 38ec114fff
commit 19f0296718
2 changed files with 3 additions and 1 deletions

View File

@ -175,6 +175,7 @@ S3_SECRET_KEY=
S3_BUCKET=evolution
S3_PORT=443
S3_ENDPOINT=s3.domain.com
S3_REGION=eu-west-3
S3_USE_SSL=true
# AMAZON S3 - Environment variables
@ -183,6 +184,7 @@ S3_USE_SSL=true
# S3_ACCESS_KEY=access_key_id
# S3_SECRET_KEY=secret_access_key
# S3_ENDPOINT=s3.amazonaws.com # region: s3.eu-west-3.amazonaws.com
# S3_REGION=eu-west-3
# MINIO Use SSL - Environment variables
# S3_ENABLED=true

View File

@ -21,7 +21,7 @@ const minioClient = (() => {
useSSL: BUCKET.USE_SSL,
accessKey: BUCKET.ACCESS_KEY,
secretKey: BUCKET.SECRET_KEY,
region: BUCKET.REGION
region: BUCKET.REGION,
});
}
})();