dvlpmike
dvlpmike

Reputation: 21

Problem with SSL while deploy Reverse Proxy on Docker

After deploy Reverse proxy on Docker I got error and container with proxy not cannot get up. I am getting the error below:

SHA:!DSS") failed (SSL: error:140E6118:SSL routines:ssl_cipher_process_rulestr:invalid command error:140E6118:SSL routines:ssl_cipher_process_rulestr:invalid command)

I made reverse proxy from https://phoenixnap.com/kb/docker-nginx-reverse-proxy

Upvotes: 2

Views: 2491

Answers (1)

Steffen Ullrich
Steffen Ullrich

Reputation: 123340

The instructions you follow are broken. The ssl_ciphers configuration line is broken into multiple lines instead of having everything in a single line with no spaces in the cipher string. Just cut and paste from the instructions will result in the problems you see.

Moreover, better don't follow these instructions anyway. These are outdated. Specifically the given settings disable the modern TLS 1.3 protocol which is a bad idea. Better follow the instructions from the moz://a SSL Configuration Generator

Upvotes: 7

Related Questions