add description for config.api_force_https
This commit is contained in:
parent
7a9603f850
commit
1efe34c0ad
|
@ -123,6 +123,7 @@ The following variables may be set to customize your deployment at runtime.
|
||||||
| flairs_enabled | Enables the rendering of user and link flairs on Teddit. Defaults to **true** |
|
| flairs_enabled | Enables the rendering of user and link flairs on Teddit. Defaults to **true** |
|
||||||
| highlight_controversial | Enables controversial comments to be indicated by a typographical dagger (†). Defaults to **true** |
|
| highlight_controversial | Enables controversial comments to be indicated by a typographical dagger (†). Defaults to **true** |
|
||||||
| api_enabled | Teddit API feature. Might increase loads significantly on your instance. Defaults to **true** |
|
| api_enabled | Teddit API feature. Might increase loads significantly on your instance. Defaults to **true** |
|
||||||
|
| api_force_https | Force HTTPS to Teddit API permalinks (see #285). Defaults to **false** |
|
||||||
| video_enabled | Enables video playback within Teddit. Defaults to **true** |
|
| video_enabled | Enables video playback within Teddit. Defaults to **true** |
|
||||||
| redis_enabled | Enables Redis caching. If disabled, does not allow for any caching of Reddit API calls. Defaults to **true** |
|
| redis_enabled | Enables Redis caching. If disabled, does not allow for any caching of Reddit API calls. Defaults to **true** |
|
||||||
| redis_db | Sets the redis DB name, if required |
|
| redis_db | Sets the redis DB name, if required |
|
||||||
|
|
|
@ -6,7 +6,7 @@ const config = {
|
||||||
flairs_enabled: !('FLAIRS_ENABLED' in process.env) || process.env.FLAIRS_ENABLED === 'true', // Enables the rendering of user and link flairs on teddit
|
flairs_enabled: !('FLAIRS_ENABLED' in process.env) || process.env.FLAIRS_ENABLED === 'true', // Enables the rendering of user and link flairs on teddit
|
||||||
highlight_controversial: !('HIGHLIGHT_CONTROVERSIAL' in process.env) || process.env.HIGHLIGHT_CONTROVERSIAL === 'true', // Enables controversial comments to be indicated by a typographical dagger (†)
|
highlight_controversial: !('HIGHLIGHT_CONTROVERSIAL' in process.env) || process.env.HIGHLIGHT_CONTROVERSIAL === 'true', // Enables controversial comments to be indicated by a typographical dagger (†)
|
||||||
api_enabled: !('API_ENABLED' in process.env) || process.env.API_ENABLED === 'true', // Teddit API feature. Might increase loads significantly on your instance.
|
api_enabled: !('API_ENABLED' in process.env) || process.env.API_ENABLED === 'true', // Teddit API feature. Might increase loads significantly on your instance.
|
||||||
api_force_https: process.env.API_FORCE_HTTPS === 'true' || false,
|
api_force_https: process.env.API_FORCE_HTTPS === 'true' || false, // Force HTTPS to Teddit API permalinks (see #285).
|
||||||
video_enabled: !('VIDEO_ENABLED' in process.env) || process.env.VIDEO_ENABLED === 'true',
|
video_enabled: !('VIDEO_ENABLED' in process.env) || process.env.VIDEO_ENABLED === 'true',
|
||||||
redis_enabled: !('REDIS_ENABLED' in process.env) || process.env.REDIS_ENABLED === 'true', // If disabled, does not cache Reddit API calls
|
redis_enabled: !('REDIS_ENABLED' in process.env) || process.env.REDIS_ENABLED === 'true', // If disabled, does not cache Reddit API calls
|
||||||
redis_db: process.env.REDIS_DB,
|
redis_db: process.env.REDIS_DB,
|
||||||
|
|
Loading…
Reference in New Issue