diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2017-06-23 16:39:17 +0800 |
---|---|---|
committer | Bo-Yi Wu <appleboy.tw@gmail.com> | 2017-06-23 03:39:17 -0500 |
commit | 09cb9991458dd56e2ac5df22b82ead563dbaa50f (patch) | |
tree | 5a63b5d17e21bea7c123a033cc6835eb30b6dfb9 /conf | |
parent | f6450b8f92cbd334f59aa2599bf3b4f09e676445 (diff) | |
download | gitea-09cb9991458dd56e2ac5df22b82ead563dbaa50f.tar.gz gitea-09cb9991458dd56e2ac5df22b82ead563dbaa50f.zip |
add missing lfs config on example file (#2039)
* add missing lfs config on example file
* leveal jwt secret empty
Diffstat (limited to 'conf')
-rw-r--r-- | conf/app.ini | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/conf/app.ini b/conf/app.ini index a666dc904a..2f9c3cdb11 100644 --- a/conf/app.ini +++ b/conf/app.ini @@ -147,6 +147,12 @@ APP_DATA_PATH = data ENABLE_GZIP = false ; Landing page for non-logged users, can be "home" or "explore" LANDING_PAGE = home +; Enables git-lfs support. true or false, default is false. +LFS_START_SERVER = false +; Where your lfs files put on, default is data/lfs. +LFS_CONTENT_PATH = data/lfs +; LFS authentication secret, changed this to yourself. +LFS_JWT_SECRET = ; Define allowed algorithms and their minimum key length (use -1 to disable a type) [ssh.minimum_key_sizes] |