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:
authorJacob Vosmaer <jacob@gitlab.com>2017-04-06 14:53:17 +0300
committerJacob Vosmaer <jacob@gitlab.com>2017-04-06 14:53:17 +0300
commit19d34e340b3cc81c180abc750bccac039f633629 (patch)
treefdbad70ea8855a0885b5824cf50ca9e5e429db4f /config.toml.example
parentd3beea5f72bb936ec98aa212e7c8b9632537abac (diff)
Add config.toml.example
Diffstat (limited to 'config.toml.example')
-rw-r--r--config.toml.example22
1 files changed, 22 insertions, 0 deletions
diff --git a/config.toml.example b/config.toml.example
new file mode 100644
index 000000000..c709518d4
--- /dev/null
+++ b/config.toml.example
@@ -0,0 +1,22 @@
+# Example Gitaly configuration file
+
+listen_path = "/home/git/gitlab/tmp/sockets/private/gitaly.socket"
+
+# # Optional: listen on a TCP socket. This is insecure (no authentication)
+# listen_addr = "localhost:9999"
+#
+
+# # Optional: export metrics via Prometheus
+# prometheus_listen_addr = "localhost:9236"
+#
+
+[[storage]]
+name = "default"
+path = "/home/git/repositories"
+
+# # You can optionally configure more storages for this Gitaly instance to serve up
+#
+# [[storage]]
+# name = "other_storage"
+# path = "/mnt/other_storage/repositories"
+#