diff options
author | Lauris BH <lauris@nix.lv> | 2018-01-28 19:16:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-28 19:16:28 +0200 |
commit | e189b06baa2d6fb0f536452c7e597ad67daa7e85 (patch) | |
tree | 862e16e31d5f8812dfd2590ffd059305736b11de /custom/conf | |
parent | 7fd2d8e392d312c6bd65190eb9d9e0ed35bdfdc0 (diff) | |
download | gitea-e189b06baa2d6fb0f536452c7e597ad67daa7e85.tar.gz gitea-e189b06baa2d6fb0f536452c7e597ad67daa7e85.zip |
Add mising `LOCAL_WIKI_PATH` documentation (#3420)
Diffstat (limited to 'custom/conf')
-rw-r--r-- | custom/conf/app.ini.sample | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/custom/conf/app.ini.sample b/custom/conf/app.ini.sample index 9bfa841b73..57fa5ec3d7 100644 --- a/custom/conf/app.ini.sample +++ b/custom/conf/app.ini.sample @@ -41,8 +41,10 @@ LINE_WRAP_EXTENSIONS = .txt,.md,.markdown,.mdown,.mkd, PREVIEWABLE_FILE_MODES = markdown [repository.local] -; Path for uploads. Defaults to `tmp/local-repo` +; Path for local repository copy. Defaults to `tmp/local-repo` LOCAL_COPY_PATH = tmp/local-repo +; Path for local wiki copy. Defaults to `tmp/local-wiki` +LOCAL_WIKI_PATH = tmp/local-wiki [repository.upload] ; Whether repository file uploads are enabled. Defaults to `true` |