We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The current default certificate is expired as of today:
wget https://raw.githubusercontent.com/chris-belcher/electrum-personal-server/master/electrumpersonalserver/certs/cert.crt openssl x509 -enddate -in cert.crt
notAfter=Mar 12 00:07:58 2023 GMT
This means that every person using the default cert will not be able to connect from today, as seen here.
The text was updated successfully, but these errors were encountered:
Update the default certificate as it expired
716235d
Followed commands from chris-belcher#286 (comment) $ openssl genrsa -des3 -passout pass:x -out server.pass.key 2048 $ openssl rsa -passin pass:x -in server.pass.key -out server.key $ rm server.pass.key $ openssl req -new -key server.key -out server.csr $ openssl x509 -req -days 1825 -in server.csr -signkey server.key -out server.crt Signature ok subject=C = US, ST = California, L = Sunnydale, O = Buffy The Vampire Slayer, CN = electrum-server.tld $ openssl x509 -enddate -in server.crt notAfter=Mar 12 07:34:45 2028 GMT $ mv server.key cert.key $ mv server.crt cert.crt Fix chris-belcher#287
Successfully merging a pull request may close this issue.
The current default certificate is expired as of today:
notAfter=Mar 12 00:07:58 2023 GMT
This means that every person using the default cert will not be able to connect from today, as seen here.
The text was updated successfully, but these errors were encountered: