Hello,
I checked acme.sh and received the certificate. However, my site is still without https: //
I use Nginx and Centos 7.
I also made the verification via txt cloudflare, but it continues without https
Hello,
I checked acme.sh and received the certificate. However, my site is still without https: //
I use Nginx and Centos 7.
I also made the verification via txt cloudflare, but it continues without https
What did you do to install the certificate? And why did you categorize this post as a feature request?
Hi,
Also, what’s your domain name?
Did you install your certificate to your web server?
More importantly, is your site not working with https or there is no padlock?
Thank you
#moved to #help #
Check this project: https://github.com/Neilpang/get.acme.sh
$ curl https://get.acme.sh | sh
$ export CF_Key=“sdfsdfsdfljlbjkljlkjsdfoiwje”
$ export CF_Email="xxxx@sss.com"
$ acme.sh --issue --dns dns_cf -d example.com -d www.example.com
Sorry, I put it on the wrong topic. Can you fix this?
So you did nothing to install the certificate, or configure your server to speak HTTPS? Then there’s your problem.
My domain is: lserpes.com
I installed it on my web server (nginx), but the padlock does not appear and neither is https: //
Hi,
It’s https & it’s on CloudFlare…
See:
The issue is wordpress is not picking up https…
You would need to go to your wp admin panel -------> Settings and change Both URL to https…
Thank you
I have already installed it by different methods and apparently the certificate is generated successfully. However, the site remains the same. You see?
Generating the certificate and configuring your webserver to use it are two different things, and as far as I know, acme.sh doesn’t do the latter.
I would like to repeat…
You are using CloudFlare’s free CDN service… The certificate shown would always be CloudFlare’s universal certificate.
Even if you installed the let’s encrypt certificate, despite the fact that Let’s Encrypt certificate will only secure the connection between your server & Cloudflare, your site is not working properly on https.
You must ask WordPress to stop using the http link and start using https!
Steps to do it:
Login to your wordpress admin panel http://lserpes.com/wp-login.php?redirect_to=http%3A%2F%2Flserpes.com%2Fwp-admin%2Foptions-general.php
After you logged in, you should be directed on to “General Settings”
Replace the two link show in Wordpress Address & Site Address with https protocol.
Click the Save Changes button.
Refresh your site.
It should be working properly in https. If not, clear your cache.
I’ll correct it now and let you know. Thank you
The site has entered Loop. Too_many_redirects
Hi,
What did you set on the site URL and WordPress URL?
Thank you
Hi,
Please take a look at this article
Please also take a look at your CloudFlare settings… Check if that have any redirections set.
Thank you
I probably have to add a redirect to / etc / nginx / sites-available / default
server {
listen 80;
server_name example.com www.example.com;
return 301 https: //www.example.com$request_uri;
}
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.