Elektrine lite

← Feed

@foone@digipres.club

Post #4026640

2026-07-23 04:15 UTC

ugh I think python is requiring it to be a self-signed certificate in a way that requires more steps than curl is requiring like I need to generate a private key and then use that to sign a copy of my certificate. My brain hurts too much to do this

Replies (1)

  • @foone@digipres.club 2026-07-23 04:16

    I created my cert.pem/key.pem with: openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -sha256 -days 365 -nodes which is apparently not the right way to do it for python to be happy

    Open ##4026639