diff options
author | Suren A. Chilingaryan <csa@suren.me> | 2019-10-06 04:52:01 +0200 |
---|---|---|
committer | Suren A. Chilingaryan <csa@suren.me> | 2019-10-06 04:52:01 +0200 |
commit | 6b659b35c1d6214688920200efe1d782a0a5d877 (patch) | |
tree | d0dac24ff6ee619905a91ef76ec029e6cc359088 /setup/projects/services/templates/gogs.yml.j2 | |
parent | 369c5d409d9466dfb3360b35c0219d23ae99e2f4 (diff) | |
download | ands-6b659b35c1d6214688920200efe1d782a0a5d877.tar.gz ands-6b659b35c1d6214688920200efe1d782a0a5d877.tar.bz2 ands-6b659b35c1d6214688920200efe1d782a0a5d877.tar.xz ands-6b659b35c1d6214688920200efe1d782a0a5d877.zip |
Migrate more services (gogs, davmail), fix storage-related issues in web namespace
Diffstat (limited to 'setup/projects/services/templates/gogs.yml.j2')
-rw-r--r-- | setup/projects/services/templates/gogs.yml.j2 | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/setup/projects/services/templates/gogs.yml.j2 b/setup/projects/services/templates/gogs.yml.j2 new file mode 100644 index 0000000..57a5e65 --- /dev/null +++ b/setup/projects/services/templates/gogs.yml.j2 @@ -0,0 +1,31 @@ +kind: ConfigMap +apiVersion: v1 +metadata: + name: gogs +data: + app.ini: | + APP_NAME = IPE Git + RUN_MODE = prod + RUN_USER = gogs + + [server] + DOMAIN = gogs.kaas.kit.edu + ROOT_URL = http://gogs.kaas.kit.edu + HTTP_PORT = 3000 + + [database] + DB_TYPE = sqlite3 + NAME = gogs + PATH = /data/gogs/gogs.db + + [repository] + ROOT = /data/repositories + + [security] + INSTALL_LOCK = true + + [service] + ENABLE_CAPTCHA = false + + [webhook] + SKIP_TLS_VERIFY = true |