Replies: 1 comment
-
Hello, thank you for reaching out. You're right, my setup was missing the You can also certainly mount your own Best regards. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
When enabling SSL options in nginx.conf, I was getting the following error:
nginx: [emerg] BIO_new_file("/etc/nginx/dhparam.pem") failed (SSL: error:80000002:system library::No such file or directory:calling fopen(/etc/nginx/dhparam.pem, r) error:10000080:BIO routines::no such file)
To fix this, cd into the same folder as docker-compose.yml and run
openssl dhparam -out ./nginx/dhparam.pem 2048
Then add this line to docker-compose.yml in the nginx service under volumes right after
- ./certs:/etc/nginx/certs
:- ./nginx/dhparam.pem:/etc/nginx/dhparam.pem
Not sure if this is the best way to go about this fix, but it worked for me.
Beta Was this translation helpful? Give feedback.
All reactions