Fix indentation nits

This patch fixes a couple of indentation issues that were
called out on a previous review [0]

[0] https://review.opendev.org/#/c/679502

Change-Id: I2617e011619f8a28d2c6faac124f6a9fb40d0c99
This commit is contained in:
Douglas Mendizábal 2020-08-18 11:43:31 -05:00
parent 87269dcaee
commit 982ee741fb
1 changed files with 14 additions and 14 deletions

View File

@ -42,7 +42,7 @@ Possible values:
* A list where each element is an allowed origin hostnames, else an empty list
"""),
cfg.StrOpt('ssl_ciphers',
help="""
help="""
OpenSSL cipher preference string that specifies what ciphers to allow for TLS
connections from clients. For example::
@ -59,19 +59,19 @@ Related options:
* [DEFAULT] key
"""),
cfg.StrOpt('ssl_minimum_version',
default='default',
choices=[
# These values must align with SSL_OPTIONS in
# websockify/websocketproxy.py
('default', 'Use the underlying system OpenSSL defaults'),
('tlsv1_1',
'Require TLS v1.1 or greater for TLS connections'),
('tlsv1_2',
'Require TLS v1.2 or greater for TLS connections'),
('tlsv1_3',
'Require TLS v1.3 or greater for TLS connections'),
],
help="""
default='default',
choices=[
# These values must align with SSL_OPTIONS in
# websockify/websocketproxy.py
('default', 'Use the underlying system OpenSSL defaults'),
('tlsv1_1',
'Require TLS v1.1 or greater for TLS connections'),
('tlsv1_2',
'Require TLS v1.2 or greater for TLS connections'),
('tlsv1_3',
'Require TLS v1.3 or greater for TLS connections'),
],
help="""
Minimum allowed SSL/TLS protocol version.
Related options: