diff options
author | Russell Aunger <rba@live.com> | 2018-08-23 18:42:02 -0400 |
---|---|---|
committer | techknowlogick <techknowlogick@users.noreply.github.com> | 2018-08-23 18:42:02 -0400 |
commit | 127f4770566e09504a3efe4c4282cee049bad0e1 (patch) | |
tree | 5f9e350f074367722f9fa0d795b22752e607b7c8 /custom | |
parent | 0dac1ff677939caba2dbfed6233be1f0bcb3749a (diff) | |
download | gitea-127f4770566e09504a3efe4c4282cee049bad0e1.tar.gz gitea-127f4770566e09504a3efe4c4282cee049bad0e1.zip |
MySQL TLS (#4642)
Diffstat (limited to 'custom')
-rw-r--r-- | custom/conf/app.ini.sample | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/custom/conf/app.ini.sample b/custom/conf/app.ini.sample index 6f973c63e1..d30f134db7 100644 --- a/custom/conf/app.ini.sample +++ b/custom/conf/app.ini.sample @@ -223,7 +223,8 @@ 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" +; For Postgres, either "disable" (default), "require", or "verify-full" +; For MySQL, either "false" (default), "true", or "skip-verify" SSL_MODE = disable ; For "sqlite3" and "tidb", use an absolute path when you start gitea as service PATH = data/gitea.db |