aboutsummaryrefslogtreecommitdiff
path: root/cmd/ansible/conf.toml.j2
diff options
context:
space:
mode:
authorjloup <jeanloup.jamet@gmail.com>2018-05-04 18:19:52 +0200
committerjloup <jeanloup.jamet@gmail.com>2018-05-04 18:19:52 +0200
commit69db77ca4054d80ba2156b774a0c1467ff661c81 (patch)
treeeae1b0f6d5aa421ae1b0125a7884f811c0a2acc6 /cmd/ansible/conf.toml.j2
parent35e1f63a03a1cf55fe72839523790d38c0cea21b (diff)
downloadFront-69db77ca4054d80ba2156b774a0c1467ff661c81.tar.gz
Front-69db77ca4054d80ba2156b774a0c1467ff661c81.tar.zst
Front-69db77ca4054d80ba2156b774a0c1467ff661c81.zip
Allow to configure the type of Postgres connection (tcp or unix).
Diffstat (limited to 'cmd/ansible/conf.toml.j2')
-rw-r--r--cmd/ansible/conf.toml.j23
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/ansible/conf.toml.j2 b/cmd/ansible/conf.toml.j2
index 7c82f84..cddc257 100644
--- a/cmd/ansible/conf.toml.j2
+++ b/cmd/ansible/conf.toml.j2
@@ -7,10 +7,11 @@ port="8080"
7user="{{ postgres_user }}" 7user="{{ postgres_user }}"
8password="{{ postgres_password }}" 8password="{{ postgres_password }}"
9database="{{ postgres_database }}" 9database="{{ postgres_database }}"
10type="{{ postgres_connection_type }}" # tcp or unix
10address="localhost:5432" 11address="localhost:5432"
11 12
12[redis] 13[redis]
13type="{{ redis_adress_type }}" 14type="{{ redis_adress_type }}" # tcp or unix
14address="localhost:6379" 15address="localhost:6379"
15database=0 16database=0
16 17