Comments on How to Install Etherpad with Nginx and SSL on Debian 11
Etherpad is a collaborative and real-time text editor for your team. In this tutorial, you will install and configure the Etherpad Real-time Collaborative Editor on the Debian 11 Bullseye.
2 Comment(s)
Comments
Thx For Tutorial
using the above I get
# sudo nginx -tnginx: [emerg] SSL_CTX_set_cipher_list("EECDH+ECDSA+AESGCM EECDH+aRSA+AESGCM EECDH+ECDSA+SHA384 \ EECDH+ECDSA+SHA256 EECDH+aRSA+SHA384 EECDH+aRSA+SHA256 EECDH+aRSA+RC4 \ EECDH EDH+aRSA RC4 !aNULL !eNULL !LOW !3DES !MD5 !EXP !PSK !SRP !DSS") failed (SSL: error:140E6118:SSL routines:ssl_cipher_process_rulestr:invalid command error:140E6118:SSL routines:ssl_cipher_process_rulestr:invalid command)nginx: configuration file /etc/nginx/nginx.conf test failed
the answer to that was found here:
https://stackoverflow.com/questions/70479151/problem-with-ssl-while-deploy-reverse-proxy-on-docker
changing this to be all on one line fixed the issue:
ssl_ciphers "EECDH+ECDSA+AESGCM EECDH+aRSA+AESGCM EECDH+ECDSA+SHA384 EECDH+ECDSA+SHA256 EECDH+aRSA+SHA384 EECDH+aRSA+SHA256 EECDH+aRSA+RC4 EECDH EDH+aRSA RC4 !aNULL !eNULL !LOW !3DES !MD5 !EXP !PSK !SRP !DSS";