aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content
diff options
context:
space:
mode:
authorRobin <1105080+openscript@users.noreply.github.com>2020-10-15 11:48:00 +0200
committerGitHub <noreply@github.com>2020-10-15 10:48:00 +0100
commit27b7add2f84e823960b69277865cfa58ccea2273 (patch)
tree1421b3c1338ebf037a2bec7bbbf81031d17d9900 /docs/content
parentdeb0333c96e5c744359a7f642f44f577c7d4b920 (diff)
downloadgitea-27b7add2f84e823960b69277865cfa58ccea2273.tar.gz
gitea-27b7add2f84e823960b69277865cfa58ccea2273.zip
Enhance config cheat sheet on passwd quoting (#13158)
See #13126
Diffstat (limited to 'docs/content')
-rw-r--r--docs/content/doc/advanced/config-cheat-sheet.en-us.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/doc/advanced/config-cheat-sheet.en-us.md b/docs/content/doc/advanced/config-cheat-sheet.en-us.md
index bdd872b0bf..9e61a25f33 100644
--- a/docs/content/doc/advanced/config-cheat-sheet.en-us.md
+++ b/docs/content/doc/advanced/config-cheat-sheet.en-us.md
@@ -301,7 +301,7 @@ Values containing `#` or `;` must be quoted using `` ` `` or `"""`.
- `HOST`: **127.0.0.1:3306**: Database host address and port or absolute path for unix socket \[mysql, postgres\] (ex: /var/run/mysqld/mysqld.sock).
- `NAME`: **gitea**: Database name.
- `USER`: **root**: Database username.
-- `PASSWD`: **\<empty\>**: Database user password. Use \`your password\` for quoting if you use special characters in the password.
+- `PASSWD`: **\<empty\>**: Database user password. Use \`your password\` or """your password""" for quoting if you use special characters in the password.
- `SCHEMA`: **\<empty\>**: For PostgreSQL only, schema to use if different from "public". The schema must exist beforehand,
the user must have creation privileges on it, and the user search path must be set to the look into the schema first
(e.g. `ALTER USER user SET SEARCH_PATH = schema_name,"$user",public;`).