8.9 KiB
title, permalink
| title | permalink |
|---|---|
| Configuration | /docs/running/configuration/ |
{% include toc %}
Overview
{:.no_toc}
Talk, like many web applications, requires manual configuration via environment variables to configure the server for your specific needs. This is following the standard 12 Factor App Manifesto which requires that said configuration lives as environment variables.
During development, we can utilize a .env file, which takes the form of
NAME=VALUE. For example:
TALK_MONGO_URL=mongodb://some-awesome-mongo-instance
TALK_REDIS_URL=redis://some-awesome-redis-instance
TALK_ROOT_URL=https://my-awesome-talk.com
# ... and so on
When you place a file titled .env at the root of the project, and start the
application with yarn dev-start, it will read in the contents of the .env
file as if they were environment variables. This is done via the
dotenv package. In production, using this
method is discouraged, as it promotes bad practices such as storing config in a
file.
Variables
The Talk application looks for the following configuration values either as environment variables. Refer to the config.js file to see how the configuration is parsed.
Webpack
These are only used during the webpack build.
TALK_THREADING_LEVEL(optional) - specify the maximum depth of the comment thread. (Default3)TALK_DEFAULT_STREAM_TAB(optional) - specify the default stream tab in the admin. (Defaultall)TALK_DISABLE_EMBED_POLYFILL(optional) - when set toTRUE, the build process will not include the babel-polyfill in the embed.js target. (DefaultFALSE)
Database
TALK_MONGO_URL(required) - the database connection string for the MongoDB database.TALK_REDIS_URL(required) - the database connection string for the Redis database.
Advanced
TALK_REDIS_RECONNECTION_MAX_ATTEMPTS(optional) - the amount of attempts that a redis connection will attempt to reconnect before aborting with an error. (Default100)TALK_REDIS_RECONNECTION_MAX_RETRY_TIME(optional) - the time in string format for the maximum amount of time that a client can be considered "connecting" before attempts at reconnection are aborted with an error. (Default1 min)TALK_REDIS_RECONNECTION_BACKOFF_FACTOR(optional) - the time factor that will be multiplied against the current attempt count inbetween attempts to connect to redis. (Default500 ms)TALK_REDIS_RECONNECTION_BACKOFF_MINIMUM_TIME(optional) - the minimum time used to delay before attempting to reconnect to redis. (Default1 sec)
Server
TALK_ROOT_URL(required) - root url of the installed application externally available in the format:<scheme>://<host>:<port?>/<pathname>.TALK_KEEP_ALIVE(optional) - The keepalive timeout that should be used to send keep alive messages through the websocket to keep the socket alive. (Default30s)TALK_INSTALL_LOCK(optional for dynamic setup) - WhenTRUE, disables the dynamic setup endpoint. (DefaultFALSE)
Advanced
TALK_ROOT_URL_MOUNT_PATH(optional) - when set toTRUE, the routes will be mounted onto the<pathname>component of theTALK_ROOT_URL. You would use this when your upstream proxy cannot strip the prefix from the url. (DefaultFALSE)
Word Filter
TALK_DISABLE_AUTOFLAG_SUSPECT_WORDS(optional) WhenTRUE, disables flagging of comments that match the suspect word filter. (DefaultFALSE)
JWT
The following are configuration shared with every type of secret used.
TALK_JWT_ALG(optional) - the algorithm used to sign/verify JWT's used for session management. Read up about alternative algorithms on the jsonwebtoken package. (DefaultHS256)TALK_JWT_EXPIRY(optional) - the expiry duration (exp) for the tokens issued for logged in sessions. (Default1 day)TALK_JWT_ISSUER(optional) - the issuer (iss) claim for login JWT tokens. (Defaultprocess.env.TALK_ROOT_URL)TALK_JWT_AUDIENCE(optional) - the audience (aud) claim for login JWT tokens. (Defaulttalk)
You must also specify secrets as either the TALK_JWT_SECRET or the TALK_JWT_SECRETS
variable. Refer to the [Secrets Documentation]({{ "/docs/running/secrets/" | absolute_url }})
on the contents of those variables.
Advanced
These are advanced settings for fine tuning the auth integration, and is not needed in most situations.
TALK_JWT_COOKIE_NAME(optional) - the default cookie name to check for a valid JWT token to use for verifying a user. (Defaultauthorization)TALK_JWT_SIGNING_COOKIE_NAME(optional) - the default cookie name that is use to set a cookie containing a JWT that was issued by Talk. (Defaultprocess.env.TALK_JWT_COOKIE_NAME)TALK_JWT_COOKIE_NAMES(optional) - the different cookie names to check for a JWT token in, seperated by,. By default, we always use theprocess.env.TALK_JWT_COOKIE_NAMEandprocess.env.TALK_JWT_SIGNING_COOKIE_NAMEfor this value. Any additional cookie names specified here will be appended to the list of cookie names to inspect.TALK_JWT_CLEAR_COOKIE_LOGOUT(optional) - whenFALSE, Talk will not clear the cookie with nameTALK_JWT_COOKIE_NAMEwhen logging out (DefaultTRUE)TALK_JWT_DISABLE_AUDIENCE(optional) - whenTRUE, Talk will not verify or sign JWT's with an audience (aud) claim, even if theTALK_JWT_AUDIENCEconfig is set. (DefaultFALSE)TALK_JWT_DISABLE_ISSUER(optional) - whenTRUE, Talk will not verify or sign JWT's with an issuer (iss) claim, even if theTALK_JWT_ISSUERconfig is set. (DefaultFALSE)TALK_JWT_USER_ID_CLAIM(optional) - specify the claim using dot notation for where the user id should be stored/read to/from. Exampleuser.idwould store it like:{user: {id}}on the claims object. (Defaultsub)
When integrating with an external authentication system, the following JWT claims will be used:
{
"jti": "<the unique token identifier>", // *required* unique id used for blacklisting
"aud": TALK_JWT_AUDIENCE, // *optional* if TALK_JWT_DISABLE_AUDIENCE === 'TRUE', *required* otherwise
"iss": TALK_JWT_ISSUER, // *optional* if TALK_JWT_DISABLE_ISSUER === 'TRUE', *required* otherwise
[TALK_JWT_USER_ID_CLAIM]: "<the user id>", // *required* the id of the user
// Note, if TALK_JWT_USER_ID_CLAIM contains '.', it will be used to delineate an object, for example
// `user.id` would store it like: `{user: {id}}`
}
When our passport middleware checks for JWT tokens, it searches in the following order:
- Custom cookies named from the list in
TALK_JWT_COOKIE_NAMES. - Default cookies named
TALK_JWT_COOKIE_NAMEthenTALK_JWT_SIGNING_COOKIE_NAME. - Query parameter
?access_token={TOKEN}. - Header:
Authorization: Bearer {TOKEN}.
TALK_SMTP_EMAIL(required for email) - the address to send emails from using the SMTP provider.TALK_SMTP_USERNAME(required for email) - username of the SMTP provider you are using.TALK_SMTP_PASSWORD(required for email) - password for the SMTP provider you are using.TALK_SMTP_HOST(required for email) - SMTP host url with formatsmtp.domain.com, note the lack of protocol on the domain.TALK_SMTP_PORT(required for email) - SMTP port.
Recaptcha
TALK_RECAPTCHA_SECRET(required for reCAPTCHA support) - server secret used for enabling reCAPTCHA powered logins. If not provided it will instead default to providing only a time based lockout.TALK_RECAPTCHA_PUBLIC(required for reCAPTCHA support) - client secret used for enabling reCAPTCHA powered logins. If not provided it will instead default to providing only a time based lockout.
Trust
Trust can auto-moderate comments based on user history. By specifying this option, the behavior can be changed to offer different results.
TRUST_THRESHOLDS(optional) - configure the reliability thresholds for flagging and commenting. (Defaultcomment:2,-1;flag:2,-1)
The form of the environment variable:
<name>:<RELIABLE>,<UNRELIABLE>;<name>:<RELIABLE>,<UNRELIABLE>;...
The default could be read as:
- When a commenter has one comment rejected, their next comment must be pre-moderated once in order to post freely again. If they instead get rejected again, then they must have two of their comments approved in order to get added back to the queue.
- At the moment of writing, behavior is not attached to the flagging reliability, but it is recorded.
Cache
TALK_CACHE_EXPIRY_COMMENT_COUNT(optional) - configure the duration for which comment counts are cached for. (Default1hr)
Plugins
Plugins configuration can be found on the [Plugins]({{ "/docs/running/plugins/" | absolute_url }}) page.