You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
c.CmdClause.Flag("ssl-ciphers", "Colon delimited list of OpenSSL ciphers (see https://www.openssl.org/docs/man1.0.2/man1/ciphers for details)").StringVar(&c.input.SSLCiphers)
However, the OpenSSL cipher-list has multiple characters which can be used as delimiters, it is even allowed to use any combination of them in a single definition.
The characters which can be used as delimiters are:
(space)
, (comma)
: (colon)
I've confirmed these are valid for OpenSSL with this command:
The Fastly CLI currently states that the cipher-list delimiter is
:
cli/pkg/commands/backend/create.go
Line 93 in 801f0ad
However, the OpenSSL cipher-list has multiple characters which can be used as delimiters, it is even allowed to use any combination of them in a single definition.
The characters which can be used as delimiters are:
,
(comma):
(colon)I've confirmed these are valid for OpenSSL with this command:
I've also confirmed these are valid for Fastly via the Fastly UI and the Fastly API:
The text was updated successfully, but these errors were encountered: