Skip to content

Commit

Permalink
Merge pull request #150 from fastly/2020-09-11-openssl-ciphers
Browse files Browse the repository at this point in the history
Correct broken openssl.org cipher docs link
  • Loading branch information
gaylin authored Sep 24, 2020
2 parents 664a028 + 43eaeb9 commit 30545b4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pkg/app/run_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ COMMANDS
connections to this backend
--ssl-ciphers=SSL-CIPHERS ...
List of OpenSSL ciphers (see
https://www.openssl.org/docs/manmaster/man1/ciphers.html
https://www.openssl.org/docs/man1.0.2/man1/ciphers
for details)
backend list --service-id=SERVICE-ID --version=VERSION
Expand Down Expand Up @@ -477,7 +477,7 @@ COMMANDS
connections to this backend
--ssl-ciphers=SSL-CIPHERS ...
List of OpenSSL ciphers (see
https://www.openssl.org/docs/manmaster/man1/ciphers.html
https://www.openssl.org/docs/man1.0.2/man1/ciphers
for details)
backend delete --service-id=SERVICE-ID --version=VERSION --name=NAME
Expand Down
2 changes: 1 addition & 1 deletion pkg/backend/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ func NewCreateCommand(parent common.Registerer, globals *config.Data) *CreateCom
c.CmdClause.Flag("ssl-sni-hostname", "Overrides ssl_hostname, but only for SNI in the handshake. Does not affect cert validation at all.").StringVar(&c.Input.SSLSNIHostname)
c.CmdClause.Flag("min-tls-version", "Minimum allowed TLS version on SSL connections to this backend").StringVar(&c.Input.MinTLSVersion)
c.CmdClause.Flag("max-tls-version", "Maximum allowed TLS version on SSL connections to this backend").StringVar(&c.Input.MaxTLSVersion)
c.CmdClause.Flag("ssl-ciphers", "List of OpenSSL ciphers (see https://www.openssl.org/docs/manmaster/man1/ciphers.html for details)").StringsVar(&c.Input.SSLCiphers)
c.CmdClause.Flag("ssl-ciphers", "List of OpenSSL ciphers (see https://www.openssl.org/docs/man1.0.2/man1/ciphers for details)").StringsVar(&c.Input.SSLCiphers)

return &c
}
Expand Down
2 changes: 1 addition & 1 deletion pkg/backend/update.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ func NewUpdateCommand(parent common.Registerer, globals *config.Data) *UpdateCom
c.CmdClause.Flag("ssl-sni-hostname", "Overrides ssl_hostname, but only for SNI in the handshake. Does not affect cert validation at all.").Action(c.SSLSNIHostname.Set).StringVar(&c.SSLSNIHostname.Value)
c.CmdClause.Flag("min-tls-version", "Minimum allowed TLS version on SSL connections to this backend").Action(c.MinTLSVersion.Set).StringVar(&c.MinTLSVersion.Value)
c.CmdClause.Flag("max-tls-version", "Maximum allowed TLS version on SSL connections to this backend").Action(c.MaxTLSVersion.Set).StringVar(&c.MaxTLSVersion.Value)
c.CmdClause.Flag("ssl-ciphers", "List of OpenSSL ciphers (see https://www.openssl.org/docs/manmaster/man1/ciphers.html for details)").Action(c.SSLCiphers.Set).StringsVar(&c.SSLCiphers.Value)
c.CmdClause.Flag("ssl-ciphers", "List of OpenSSL ciphers (see https://www.openssl.org/docs/man1.0.2/man1/ciphers for details)").Action(c.SSLCiphers.Set).StringsVar(&c.SSLCiphers.Value)

return &c
}
Expand Down

0 comments on commit 30545b4

Please sign in to comment.