2168f823a5
Previously we did not support authentication for redis anywhere. Also in the docker compose we were exposing redis port 6379 without any authentication. In the app side for the connections that app server (for storing keys as well as for socket connections made using action cable) and Sidekiq were making to redis server did not support authentication. With this commit, we support authentication for redis connections from app side and Sidekiq. This is supported in docker-compose as well. The changes include : * Added support for new env variable REDIS_PASSWORD * This redis password is now supported by action cable connections, Sidekiq connections and app side redis connections * Since Sidekiq did not have an initializer, added an initializer to pass custom config to Sidekiq (for now it's options for redis) * Changes in docker-compose to pickup a password set in .env file to protect the redis server running in docker * Added necessary documentation changes in `docker.md` and `environment-variables.md`
52 lines
No EOL
1 KiB
Text
52 lines
No EOL
1 KiB
Text
SECRET_KEY_BASE=
|
|
|
|
#redis config
|
|
REDIS_URL=redis://redis:6379
|
|
# If you are using docker-compose, set this variable's value to be any string,
|
|
# which will be the password for the redis service running inside the docker-compose
|
|
# to make it secure
|
|
REDIS_PASSWORD=
|
|
|
|
# Postgres Database config variables
|
|
POSTGRES_HOST=postgres
|
|
POSTGRES_USERNAME=postgres
|
|
POSTGRES_PASSWORD=
|
|
RAILS_ENV=development
|
|
RAILS_MAX_THREADS=5
|
|
|
|
#fb app
|
|
FB_VERIFY_TOKEN=
|
|
FB_APP_SECRET=
|
|
FB_APP_ID=
|
|
|
|
#mail
|
|
MAILER_SENDER_EMAIL=accounts@chatwoot.com
|
|
SMTP_PORT=1025
|
|
SMTP_DOMAIN=chatwoot.com
|
|
SMTP_ADDRESS=mailhog
|
|
SMTP_USERNAME=
|
|
SMTP_PASSWORD=
|
|
SMTP_AUTHENTICATION=
|
|
SMTP_ENABLE_STARTTLS_AUTO=
|
|
|
|
#misc
|
|
FRONTEND_URL=http://0.0.0.0:3000
|
|
ACTIVE_STORAGE_SERVICE=local
|
|
|
|
#s3
|
|
S3_BUCKET_NAME=
|
|
AWS_ACCESS_KEY_ID=
|
|
AWS_SECRET_ACCESS_KEY=
|
|
AWS_REGION=
|
|
|
|
#sentry
|
|
SENTRY_DSN=
|
|
|
|
#### This environment variables are only required in hosted version which has billing
|
|
ENABLE_BILLING=
|
|
|
|
## chargebee settings
|
|
CHARGEBEE_API_KEY=
|
|
CHARGEBEE_SITE=
|
|
CHARGEBEE_WEBHOOK_USERNAME=
|
|
CHARGEBEE_WEBHOOK_PASSWORD= |