diff options
author | Julius Härtl <jus@bitgrid.net> | 2021-01-19 11:20:50 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2021-01-28 12:00:20 +0100 |
commit | 7e6d69d166cbc92fb457fc72efc9abe850a0bbe4 (patch) | |
tree | 54328a78dbbd8b4570d7e6913ce4c8291a451a36 /config | |
parent | 66fa3fca8323fe763e4177cc31d3f535802e976a (diff) | |
download | nextcloud-server-7e6d69d166cbc92fb457fc72efc9abe850a0bbe4.tar.gz nextcloud-server-7e6d69d166cbc92fb457fc72efc9abe850a0bbe4.zip |
Add templatedirectory config value to let admins have their custom templates by default
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 216a32c8ebd..9824749a251 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -317,6 +317,21 @@ $CONFIG = [ */ 'skeletondirectory' => '/path/to/nextcloud/core/skeleton', + +/** + * The directory where the template files are located. These files will be + * copied to the template directory of new users. Leave empty to not copy any + * template files. + * ``{lang}`` can be used as a placeholder for the language of the user. + * If the directory does not exist, it falls back to non dialect (from ``de_DE`` + * to ``de``). If that does not exist either, it falls back to ``default`` + * + * If this is not set creating a template directory will only happen if no custom + * ``skeletondirectory`` is defined, otherwise the shipped templates will be used + * to create a template directory for the user. + */ +'templatesdirectory' => '/path/to/nextcloud/templates', + /** * If your user backend does not allow password resets (e.g. when it's a * read-only user backend like LDAP), you can specify a custom link, where the |