summaryrefslogtreecommitdiff
path: root/doc/help
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2021-03-19 10:11:28 +0100
committerFlorian Bruhin <me@the-compiler.org>2021-03-19 17:59:47 +0100
commitde803571a9404a8310d6ef18e4712f0920957a8a (patch)
treecb3478d7b958571b399de9375287a986afb623df /doc/help
parent3e4be9ddb7713e4eca601bc286b0ef456f72145c (diff)
downloadqutebrowser-de803571a9404a8310d6ef18e4712f0920957a8a.tar.gz
qutebrowser-de803571a9404a8310d6ef18e4712f0920957a8a.zip
Rename ssl_strict
Closes #5156
Diffstat (limited to 'doc/help')
-rw-r--r--doc/help/settings.asciidoc16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/help/settings.asciidoc b/doc/help/settings.asciidoc
index 8b2964f4f..d4089c915 100644
--- a/doc/help/settings.asciidoc
+++ b/doc/help/settings.asciidoc
@@ -191,7 +191,7 @@
|<<content.proxy_dns_requests,content.proxy_dns_requests>>|Send DNS requests over the configured proxy.
|<<content.register_protocol_handler,content.register_protocol_handler>>|Allow websites to register protocol handlers via `navigator.registerProtocolHandler`.
|<<content.site_specific_quirks,content.site_specific_quirks>>|Enable quirks (such as faked user agent headers) needed to get specific sites to work properly.
-|<<content.ssl_strict,content.ssl_strict>>|Validate SSL handshakes.
+|<<content.tls.certificate_errors,content.tls.certificate_errors>>|How to proceed on TLS certificate errors.
|<<content.unknown_url_scheme_policy,content.unknown_url_scheme_policy>>|How navigation requests to URLs with unknown schemes are handled.
|<<content.user_stylesheets,content.user_stylesheets>>|List of user stylesheet filenames to use.
|<<content.webgl,content.webgl>>|Enable WebGL.
@@ -2627,19 +2627,19 @@ Type: <<types,Bool>>
Default: +pass:[true]+
-[[content.ssl_strict]]
-=== content.ssl_strict
-Validate SSL handshakes.
+[[content.tls.certificate_errors]]
+=== content.tls.certificate_errors
+How to proceed on TLS certificate errors.
This setting supports URL patterns.
-Type: <<types,BoolAsk>>
+Type: <<types,String>>
Valid values:
- * +true+
- * +false+
- * +ask+
+ * +ask+: Ask how to proceed for every certificate error (unless non-overridable due to HSTS).
+ * +block+: Automatically block loading on certificate errors.
+ * +load-insecurely+: Force loading pages despite certificate errors. This is *insecure* and should be avoided. Instead of using this, consider fixing the underlying issue or importing a self-signed certificate via `certutil` (or Chromium) instead.
Default: +pass:[ask]+