Default to having keyword generation off

This commit is contained in:
Belle Aerni 2023-01-14 15:37:57 -08:00
parent 5669e8a429
commit c90823afbe
2 changed files with 2 additions and 2 deletions

View file

@ -45,7 +45,7 @@ AntCMS stores its configuration in the human-readable "yaml" file format. The ma
- `siteTitle: AntCMS` - This configuration sets the title of your AntCMS website.
- `forceHTTPS: true` - Set to 'true' by default, enables HTTPs redirection.
- `activeTheme: Default` - Sets what theme AntCMS should use. should match the folder name of the theme you want to use.
- `generateKeywords: true` - AntCMS will automatically attempt to generate keywords for each page if they don't have keywords defined. Set this to `false` to disable this. Note: this feature is very limited, we highly suggest manually creating keywords for your content.
- `generateKeywords: false` - AntCMS can automatically generate keywords for content if they aren't provided. Due to the limitations of this feature, it's currently disabled while we evaluate it's value in the project, but you can manually enable it if you want.
- `enableCache: true` - Enables or disables file caching in AntCMS.
- `admin:`
- `username: 'Admin'` - The username used to access any parts of AntCMS that may require authentication.

View file

@ -18,7 +18,7 @@ class AntConfig
),
'forceHTTPS' => true,
'activeTheme' => 'Default',
'generateKeywords' => true,
'generateKeywords' => false,
'enableCache' => true,
'admin' => array(
'username' => 'Admin',