Skip to content

Commit

Permalink
Improve renew certificates instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
ctmbl committed Sep 4, 2024
1 parent 1d7faa0 commit 73c48b9
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,21 @@ The certificates should have been generated in `certbot/conf/live/yourdomainname

#### Renew SSL certification

If you just want to renew existing certificates, use:
If you just want to renew existing certificates you should use the designed script:
```bash
./scripts/renewssl.sh
```
> Note that this script uses hardcoded absolute path designed for the iScsc VPS
If you want to here are the detailed steps:
```bash
# List existing certificates
docker compose run certbot certificates
# Renew certificates
docker compose run --rm certbot renew
# Restart blog
docker compose stop blog
docker compose up --detach blog
```

#### Deploy the website itself
Expand Down

0 comments on commit 73c48b9

Please sign in to comment.