summaryrefslogtreecommitdiff
path: root/example
diff options
context:
space:
mode:
authorLibravatar tobi <31960611+tsmethurst@users.noreply.github.com>2021-12-21 12:24:19 +0100
committerLibravatar GitHub <noreply@github.com>2021-12-21 12:24:19 +0100
commita01b178467da958c129d0e7e1311cf656a73e1d0 (patch)
tree786a0ef42382789d24d6d5065f85bf706f9b6dde /example
parent[fix] Make postgres connections magically work in common setups (#352) (diff)
downloadgotosocial-a01b178467da958c129d0e7e1311cf656a73e1d0.tar.xz
[documentation] update database docs (#355)
* update config to new db defaults * update database docs
Diffstat (limited to 'example')
-rw-r--r--example/config.yaml17
1 files changed, 8 insertions, 9 deletions
diff --git a/example/config.yaml b/example/config.yaml
index c80291843..d9cbde961 100644
--- a/example/config.yaml
+++ b/example/config.yaml
@@ -94,8 +94,8 @@ db-type: "postgres"
# String. Database address or parameters.
# Examples: ["localhost","my.db.host","127.0.0.1","192.111.39.110",":memory:"]
-# Default: "localhost"
-db-address: "127.0.0.1"
+# Default: ""
+db-address: ""
# Int. Port for database connection.
# Examples: [5432, 1234, 6969]
@@ -104,19 +104,18 @@ db-port: 5432
# String. Username for the database connection.
# Examples: ["mydbuser","postgres","gotosocial"]
-# Default: "postgres"
-db-user: "postgres"
+# Default: ""
+db-user: ""
-# REQUIRED
# String. Password to use for the database connection
# Examples: ["password123","verysafepassword","postgres"]
-# Default: "postgres"
-db-password: "postgres"
+# Default: ""
+db-password: ""
# String. Name of the database to use within the provided database type.
# Examples: ["mydb","postgres","gotosocial"]
-# Default: "postgres"
-db-database: "postgres"
+# Default: "gotosocial"
+db-database: "gotosocial"
# String. Disable, enable, or require SSL/TLS connection to the database.
# If "disable" then no TLS connection will be attempted.