diff options
author | Timo Schindler <timo.schindler87@googlemail.com> | 2018-01-27 19:35:49 +0100 |
---|---|---|
committer | Lauris BH <lauris@nix.lv> | 2018-01-27 20:35:49 +0200 |
commit | bcd7f42529d0d35268b1130afa3d9330b0779d6b (patch) | |
tree | cbbb9dc256e1ebf71c8ebce2d40dd912cbe92e80 /docs | |
parent | b627f1131b59172cf4a9f238fb89cd415cbc38e0 (diff) | |
download | gitea-bcd7f42529d0d35268b1130afa3d9330b0779d6b.tar.gz gitea-bcd7f42529d0d35268b1130afa3d9330b0779d6b.zip |
Added quoting for passwords in sample.app.ini and documentation (#3395)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/content/doc/advanced/config-cheat-sheet.en-us.md | 4 |
1 files changed, 2 insertions, 2 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 941e08a7ea..6f3a51c58c 100644 --- a/docs/content/doc/advanced/config-cheat-sheet.en-us.md +++ b/docs/content/doc/advanced/config-cheat-sheet.en-us.md @@ -118,7 +118,7 @@ Values containing `#` or `;` must be quoted using `` ` `` or `"""`. - `HOST`: **127.0.0.1:3306**: Database host address and port. - `NAME`: **gitea**: Database name. - `USER`: **root**: Database username. -- `PASSWD`: **\<empty\>**: Database user password. +- `PASSWD`: **\<empty\>**: Database user password. Use \`your password\` for quoting if you use special characters in the password. - `SSL_MODE`: **disable**: For PostgreSQL only. - `PATH`: **data/gitea.db**: For SQLite3 only, the database file path. @@ -185,7 +185,7 @@ Values containing `#` or `;` must be quoted using `` ` `` or `"""`. - `FROM`: **\<empty\>**: Mail from address, RFC 5322. This can be just an email address, or the "Name" \<email@example.com\> format. - `USER`: **\<empty\>**: Username of mailing user (usually the sender's e-mail address). -- `PASSWD`: **\<empty\>**: Password of mailing user. +- `PASSWD`: **\<empty\>**: Password of mailing user. Use \`your password\` for quoting if you use special characters in the password. - `SKIP_VERIFY`: **\<empty\>**: Do not verify the self-signed certificates. - **Note:** Gitea only supports SMTP with STARTTLS. - `USE_SENDMAIL`: **false** Use the operating system's `sendmail` command instead of SMTP. |