> On Aug 28, 2023, at 8:09 PM, D'Arcy Cain <[email protected]> wrote: > > On 2023-08-28 11:14, Christoph Zwerschke wrote: >> Hi all, >> PyGreSQL 5.2.5 with some bugfixes and support for Python 3.11 and Postgres >> 15 version has been released. >> @D'Arcy: We currently have a problem with www.pygresql.org: >> - the http link shows an old version > > Sorry about that. Must have missed the last announcement. I have published > 5.2.5 now. > >> - the https link does not work (wrong domain name in certificate) > > It never did work. We don't have a security certificate. Since I am > covering the domain cost perhaps a few people can donate towards the > certificate. It isn't all that much and if I get more than I need I will > just bank it for future renewals. > > Best way is Paypal to [email protected]. Please donate at least a > dollar or else PayPal fees could take the whole thing.
Not that I would discourage anyone from contributing to the project to cover other costs, but TLS certificates are free, and have been for several years: https://letsencrypt.org/ If you can listen on port 80, you can grab a cert as simply as shutting down the web server for a minute, `pip install certbot`, then this command: sudo certbot certonly --standalone --preferred-challenges http -d www.pygresql.org -d pygresql.org That'll spit out a certificate. Dig it out of the config/live directory (or reconfigure your web server to point at the paths there) and you'll be set. If you can point it at a static directory that corresponds to your `.well-known` directory, you can set up a cron job to auto-renew every 80 days or so, and you don't need to touch it after that. If your hosting provider is charging you extra for a cert in 2023, you should probably get a different provider :). Read The Docs can host a Sphinx-generated website for free, with a custom domain; just go to <https://readthedocs.org/dashboard/$YOUR_PROJECT/domains/> and add your domain in there. And they'll take care of the certificate for you too ;). -g
_______________________________________________ PyGreSQL mailing list [email protected] https://mail.vex.net/mailman/listinfo/pygresql
