mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-07-16 12:12:55 -06:00
chore: Update environment variables and add Minio/S3 integration
Updated .env.example with new environment variables for Minio/S3 integration. Added configuration for Minio/S3 endpoint, bucket, access key, secret key, and other related settings. Updated CHANGELOG.md to include the Minio/S3 integration. This change allows for the addition of Minio/S3 as a storage option for the project, improving flexibility and scalability.
This commit is contained in:
parent
e73d9c1982
commit
db1ab7404b
24
.env.example
24
.env.example
@ -124,6 +124,30 @@ CACHE_REDIS_PREFIX_KEY=evolution
|
|||||||
CACHE_REDIS_SAVE_INSTANCES=false
|
CACHE_REDIS_SAVE_INSTANCES=false
|
||||||
CACHE_LOCAL_ENABLED=false
|
CACHE_LOCAL_ENABLED=false
|
||||||
|
|
||||||
|
S3_ENABLED=false
|
||||||
|
S3_ACCESS_KEY=
|
||||||
|
S3_SECRET_KEY=
|
||||||
|
S3_BUCKET=evolution
|
||||||
|
S3_PORT=443
|
||||||
|
S3_ENDPOINT=s3.domain.com
|
||||||
|
S3_USE_SSL=true
|
||||||
|
|
||||||
|
# AMAZON S3 - Environment variables
|
||||||
|
# S3_ENABLED=true
|
||||||
|
# S3_BUCKET=bucket_name
|
||||||
|
# S3_ACCESS_KEY=access_key_id
|
||||||
|
# S3_SECRET_KEY=secret_access_key
|
||||||
|
# S3_ENDPOINT=s3.amazonaws.com # region: s3.eu-west-3.amazonaws.com
|
||||||
|
|
||||||
|
# MINIO Use SSL - Environment variables
|
||||||
|
# S3_ENABLED=true
|
||||||
|
# S3_ACCESS_KEY=access_key_id
|
||||||
|
# S3_SECRET_KEY=secret_access_key
|
||||||
|
# S3_BUCKET=bucket_name
|
||||||
|
# S3_PORT=443
|
||||||
|
# S3_ENDPOINT=s3.domain.com
|
||||||
|
# S3_USE_SSL=true
|
||||||
|
|
||||||
AUTHENTICATION_API_KEY=429683C4C977415CAAFCCE10F7D57E11
|
AUTHENTICATION_API_KEY=429683C4C977415CAAFCCE10F7D57E11
|
||||||
AUTHENTICATION_EXPOSE_IN_FETCH_INSTANCES=true
|
AUTHENTICATION_EXPOSE_IN_FETCH_INSTANCES=true
|
||||||
LANGUAGE=en
|
LANGUAGE=en
|
||||||
|
@ -13,6 +13,7 @@
|
|||||||
* Add support for managing WhatsApp templates via official API
|
* Add support for managing WhatsApp templates via official API
|
||||||
* Fixes and implementation of regex and fallback in typebot
|
* Fixes and implementation of regex and fallback in typebot
|
||||||
* Ignore jids configuration added to typebot (will be used for both groups and contacts)
|
* Ignore jids configuration added to typebot (will be used for both groups and contacts)
|
||||||
|
* Minio and S3 integration
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user