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 /custom | |
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 'custom')
-rw-r--r-- | custom/conf/app.ini.sample | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/custom/conf/app.ini.sample b/custom/conf/app.ini.sample index a931ca4eaa..9bfa841b73 100644 --- a/custom/conf/app.ini.sample +++ b/custom/conf/app.ini.sample @@ -198,6 +198,7 @@ DB_TYPE = mysql HOST = 127.0.0.1:3306 NAME = gitea USER = root +; Use PASSWD = `your password` for quoting if you use special characters in the password. PASSWD = ; For "postgres" only, either "disable", "require" or "verify-full" SSL_MODE = disable @@ -342,6 +343,7 @@ KEY_FILE = custom/mailer/key.pem FROM = ; Mailer user name and password USER = +; Use PASSWD = `your password` for quoting if you use special characters in the password. PASSWD = ; Send mails as plain text SEND_AS_PLAIN_TEXT = false @@ -464,6 +466,7 @@ SUBJECT = Diagnostic message from server HOST = ; Mailer user name and password USER = +; Use PASSWD = `your password` for quoting if you use special characters in the password. PASSWD = ; Receivers, can be one or more, e.g. 1@example.com,2@example.com RECEIVERS = |