diff options
author | spacetourist <guy.callum@gmail.com> | 2017-05-20 13:31:25 +0100 |
---|---|---|
committer | 无闻 <u@gogs.io> | 2017-05-20 08:31:25 -0400 |
commit | 0a6ceabb9baa4f0058f4403b392b8fda845a5d5a (patch) | |
tree | 55d884e27212b4aec4e5b73a3e490d37fa5ac9a0 /conf/app.ini | |
parent | d71a8fece853911fb4702e43447da6fffd52941b (diff) |
Allow configurable HTTPS SSL/TLS version(#4451)
Diffstat (limited to 'conf/app.ini')
-rw-r--r-- | conf/app.ini | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/conf/app.ini b/conf/app.ini index 2927c2aa..e9bbf484 100644 --- a/conf/app.ini +++ b/conf/app.ini @@ -56,6 +56,9 @@ DISABLE_ROUTER_LOG = false ; $ openssl pkcs12 -in cert.pfx -out key.pem -nocerts -nodes CERT_FILE = custom/https/cert.pem KEY_FILE = custom/https/key.pem +; Allowed TLS version values: SSL30, TLS10, TLS11, TLS12 +TLS_MIN_VERSION = TLS10 + ; Upper level of template and static file path ; default is the path where Gogs is executed STATIC_ROOT_PATH = @@ -148,7 +151,7 @@ ANGLED_QUOTES = true [http] ; Value for Access-Control-Allow-Origin header, default is not to present -ACCESS_CONTROL_ALLOW_ORIGIN = +ACCESS_CONTROL_ALLOW_ORIGIN = ; Define allowed algorithms and their minimum key length (use -1 to disable a type) [ssh.minimum_key_sizes] @@ -346,7 +349,7 @@ MAX_DAYS = 7 ; leave empty to inherit LEVEL = ; Webhook URL -URL = +URL = [log.xorm] ; Enable file rotation |