Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAhmad Hassan <ahassan@gitlab.com>2018-12-04 19:52:23 +0300
committerJacob Vosmaer <jacob@gitlab.com>2018-12-04 19:52:23 +0300
commitf5c1efc51ec65f1e0730c8a7fd20d03df33b13ed (patch)
treec5a587debed27e9d3a3fdcb112e24c49cc4f0999 /config.toml.example
parentda5fc7ecc5f7ee292249db28d06e5e1322d4b549 (diff)
Add tls configuration to gitaly golang server
Diffstat (limited to 'config.toml.example')
-rw-r--r--config.toml.example5
1 files changed, 5 insertions, 0 deletions
diff --git a/config.toml.example b/config.toml.example
index 2818531d5..1ab0fe7d6 100644
--- a/config.toml.example
+++ b/config.toml.example
@@ -7,6 +7,7 @@ bin_dir = "/home/git/gitaly"
# # Optional: listen on a TCP socket. This is insecure (no authentication)
# listen_addr = "localhost:9999"
+# tls_listen_addr = "localhost:8888
# # Optional: export metrics via Prometheus
# prometheus_listen_addr = "localhost:9236"
@@ -16,6 +17,10 @@ bin_dir = "/home/git/gitaly"
# token = 'abc123secret'
# transitioning = false # Set `transitioning` to true to temporarily allow unauthenticated while rolling out authentication.
+# [tls]
+# certificate_path = '/home/git/cert.cert'
+# key_path = '/home/git/key.pem'
+
# # Git executable settings
# [git]
# bin_path = "/usr/bin/git"