hansitheking
Basic Pleskian
- Server operating system version
- Ubunut 22.04
- Plesk version and microupdate number
- 18.0.57 #5
My Let's Encrypt certs do not get auto-renewed because the redirect from HTTP to HTTPS is enabled in Plesk. The only hotfix I found for the moment is to disable the redirect temporary during the night by running a cron with:
and in the morning, after 4 hours, I switch on the redirect again:
Does anyone else have this problem or another solution?
---
Ubuntu 22.04.3 LTS
Plesk Obsidian: Version 18.0.57 Update #5
---
Code:
plesk bin site -l | while read i; do plesk bin site -u $i -ssl-redirect false; done
and in the morning, after 4 hours, I switch on the redirect again:
Code:
plesk bin site -l | while read i; do plesk bin site -u $i -ssl-redirect true; done
Does anyone else have this problem or another solution?
---
Ubuntu 22.04.3 LTS
Plesk Obsidian: Version 18.0.57 Update #5
---