I can't renew certificates

i can't renew certificates,i use wordpress to creat a website
the certificates SSL is expired, i type ee site ssl-renew website.com on linux
ee site ssl-renew igcamp.tw
/opt/easyengine is not writable by EasyEngine
wrong message , can you help me how to do
thx

Did you use sudo in front of your command or did you run it as root?

2 Likes

@ALAN2 And, once you ensure you are using sudo or root access you should look at your nginx conf. Your server cannot be reached using http port 80 and this will prevent renewal (if using http challenge).

curl -I igcamp.tw

HTTP/1.1 503 Service Temporarily Unavailable
Server: nginx
Date: Thu, 28 Oct 2021 15:16:47 GMT
Content-Type: text/html
Content-Length: 206
Connection: keep-alive

Your site responds properly to https port 443 requests (except the cert is expired which you already know). So, it looks like you are intentionally preventing port 80 which you should not do.

Update: Also, a curl -I www.igcamp.tw responds ok (with a 301). It is only the igcamp.tw that responds with the 503 error. This might help you find what needs to be updated.

2 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.