mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-07-16 04:02:54 -06:00
fix: chatwoot translations and s3 region
This commit is contained in:
parent
38ec114fff
commit
19f0296718
@ -175,6 +175,7 @@ S3_SECRET_KEY=
|
|||||||
S3_BUCKET=evolution
|
S3_BUCKET=evolution
|
||||||
S3_PORT=443
|
S3_PORT=443
|
||||||
S3_ENDPOINT=s3.domain.com
|
S3_ENDPOINT=s3.domain.com
|
||||||
|
S3_REGION=eu-west-3
|
||||||
S3_USE_SSL=true
|
S3_USE_SSL=true
|
||||||
|
|
||||||
# AMAZON S3 - Environment variables
|
# AMAZON S3 - Environment variables
|
||||||
@ -183,6 +184,7 @@ S3_USE_SSL=true
|
|||||||
# S3_ACCESS_KEY=access_key_id
|
# S3_ACCESS_KEY=access_key_id
|
||||||
# S3_SECRET_KEY=secret_access_key
|
# S3_SECRET_KEY=secret_access_key
|
||||||
# S3_ENDPOINT=s3.amazonaws.com # region: s3.eu-west-3.amazonaws.com
|
# S3_ENDPOINT=s3.amazonaws.com # region: s3.eu-west-3.amazonaws.com
|
||||||
|
# S3_REGION=eu-west-3
|
||||||
|
|
||||||
# MINIO Use SSL - Environment variables
|
# MINIO Use SSL - Environment variables
|
||||||
# S3_ENABLED=true
|
# S3_ENABLED=true
|
||||||
|
@ -21,7 +21,7 @@ const minioClient = (() => {
|
|||||||
useSSL: BUCKET.USE_SSL,
|
useSSL: BUCKET.USE_SSL,
|
||||||
accessKey: BUCKET.ACCESS_KEY,
|
accessKey: BUCKET.ACCESS_KEY,
|
||||||
secretKey: BUCKET.SECRET_KEY,
|
secretKey: BUCKET.SECRET_KEY,
|
||||||
region: BUCKET.REGION
|
region: BUCKET.REGION,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
})();
|
})();
|
||||||
|
Loading…
Reference in New Issue
Block a user