Skip to content

Commit

Permalink
docs: add report about SSL certificate issue on ks1
Browse files Browse the repository at this point in the history
  • Loading branch information
raphael0202 committed Dec 23, 2024
1 parent e25b76f commit c3e0876
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions docs/reports/2024-12-23-images-certificate-expired.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# 2024-12-23 SSL certificate on images.openfoodfacts.org expired

On the 23rd of December 2024, I (Raphaël) noticed that the SSL certificate on `images.openfoodfacts.org` had expired.

I checked the certificate on the server, and it looks like certbot was not configured on the server, and that the SSL certificate was copied manually (see https://openfoodfacts.github.io/openfoodfacts-infrastructure/reports/2024-09-24-kimsufi-stor-ks1-installation/#configure).

I deleted the certificate folder:

```bash
rm -rf /etc/letsencrypt/live/images.openfoodfacts.org/
```

change the nginx configuration to listen on port 80, and restarted the nginx service.

I then launched certbot to generate a new certificate.

```bash
certbot -d images.openfoodfacts.org
```

0 comments on commit c3e0876

Please sign in to comment.