diff options
author | Tao Wang <twang2218@gmail.com> | 2018-07-04 10:44:46 +1000 |
---|---|---|
committer | techknowlogick <techknowlogick@users.noreply.github.com> | 2018-07-03 20:44:46 -0400 |
commit | 823318bfbe9a61fb09a4c8e6da68c7daab1bd35c (patch) | |
tree | 88ad21de6abb72144ebd55e7d3e322de9b6c616f /docker | |
parent | 5676f60cbacc6728f26e7db2eff47ed48ae4074b (diff) | |
download | gitea-823318bfbe9a61fb09a4c8e6da68c7daab1bd35c.tar.gz gitea-823318bfbe9a61fb09a4c8e6da68c7daab1bd35c.zip |
Add missing path in the Docker app.ini template (#2181)
Diffstat (limited to 'docker')
-rw-r--r-- | docker/etc/templates/app.ini | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docker/etc/templates/app.ini b/docker/etc/templates/app.ini index 9e0a3dd5c8..589271b4a0 100644 --- a/docker/etc/templates/app.ini +++ b/docker/etc/templates/app.ini @@ -4,6 +4,9 @@ RUN_MODE = $RUN_MODE [repository] ROOT = /data/git/repositories +[repository.local] +LOCAL_COPY_PATH = /data/gitea/tmp/local-repo + [repository.upload] TEMP_PATH = /data/gitea/uploads @@ -14,6 +17,7 @@ HTTP_PORT = $HTTP_PORT ROOT_URL = $ROOT_URL DISABLE_SSH = $DISABLE_SSH SSH_PORT = $SSH_PORT +LFS_CONTENT_PATH = /data/git/lfs [database] PATH = /data/gitea/gitea.db @@ -23,6 +27,9 @@ NAME = $DB_NAME USER = $DB_USER PASSWD = $DB_PASSWD +[indexer] +ISSUE_INDEXER_PATH = /data/gitea/indexers/issues.bleve + [session] PROVIDER_CONFIG = /data/gitea/sessions |