GreenPad on firefox?

Please fill out the fields below so we can help you better.

My domain is:
treeelement.com

I just installed lets encrypt and got everything up and running, i was just curious on how firefox does not show the green pad sign? this is my nginx config

     listen 443 ssl;
     ssl_certificate /etc/letsencrypt/live/treeelement.com/fullchain.pem;
     ssl_certificate_key /etc/letsencrypt/live/treeelement.com/privkey.pem;
    ssl_protocols TLSv1 TLSv1.1 TLSv1.2 SSLv2 SSLv3;
    ssl_prefer_server_ciphers on;
    ssl_dhparam /etc/ssl/certs/dhparam.pem;
    ssl_ciphers 'EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH';
    ssl_session_timeout 1d;
    ssl_session_cache shared:SSL:50m;
    ssl_stapling on;
    ssl_stapling_verify on;
    add_header Strict-Transport-Security max-age=15768000;

My operating system is (include version):
ubuntu 14.04
My web server is (include version):
nginx

I can login to a root shell on my machine (yes or no, or I don’t know):
yes

Thank you

Hello @killmasta93,

Seems your website is showing mixed content (this is that you are showing an https site but some links point to http), you have several links to images pointing to http instead of https.

You can check your site here and the site will tell you what are the detected issues.

Also, you should not allow neither SSLv2 nor SSLv3 in your nginx config,

Cheers,
sahsanu

1 Like

Thanks for the reply so i took out SSLv2 and SSLv3

and for the photos would i re add them again? or just add the url a https?

Thank you

EDIT: so i changed the links i just cant seem to change 1 of pictures keeps showing as http any idea to change it?

EDIT: FIXED IT had to go to general and on wordpress site had to add the https

Thank you

1 Like

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