-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: add report about SSL certificate issue on ks1
- Loading branch information
1 parent
e25b76f
commit c3e0876
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
``` |