diff options
author | Sheogorath | 2020-02-10 17:34:57 +0100 |
---|---|---|
committer | GitHub | 2020-02-10 17:34:57 +0100 |
commit | 2a28c832fcc448e12dff0dcf210d5614965cf66a (patch) | |
tree | d53c43c40bf61c2a40f0b31dae947dc64d6d1603 | |
parent | 8039066f9976d8e05c2031ec82f1f5b840ad45e4 (diff) | |
parent | 651db6098520f568201b808385a9f8fe6f22bbe0 (diff) |
Merge pull request #266 from SISheogorath/feature/change-cdn-defaults
Update CDN defaults
Diffstat (limited to '')
-rw-r--r-- | docs/configuration-config-file.md | 2 | ||||
-rw-r--r-- | lib/config/default.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/configuration-config-file.md b/docs/configuration-config-file.md index 9fe4554d..5134af7f 100644 --- a/docs/configuration-config-file.md +++ b/docs/configuration-config-file.md @@ -82,7 +82,7 @@ these are rarely used for various reasons. | variables | example values | description | | --------- | ------ | ----------- | | `allowGravatar` | `true` or `false` | set to `false` to disable [Libravatar](https://www.libravatar.org/) as profile picture source on your instance. Libravatar is a federated open-source alternative to Gravatar. | -| `useCDN` | `true` or `false` | set to use CDN resources or not (default is `true`) | +| `useCDN` | `true` or `false` | set to use CDN resources or not (default is `false`) | ## Users and Privileges diff --git a/lib/config/default.js b/lib/config/default.js index ac78e8ed..7504fda2 100644 --- a/lib/config/default.js +++ b/lib/config/default.js @@ -28,7 +28,7 @@ module.exports = { reportURI: undefined }, protocolUseSSL: false, - useCDN: true, + useCDN: false, allowAnonymous: true, allowAnonymousEdits: false, allowFreeURL: false, |