Hi guys,
I have a MERN app running via docker-compose on Ubuntu 18.04. I’m also using Nginx as a server, and I’ve added SSL to my project now via Certbot.
I have an issue now since I’ve added SSL. Whenever I have communication between my client and server I get this message:
Mixed Content: The page at 'https://luckynote.io/login' was loaded over HTTPS, but requested an insecure resource 'http://luckynote.io:4000/graphql'. This request has been blocked; the content must be served over HTTPS.
Any idea how to get around this?
Cheers,
Ivan
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Hello, @ivanssardelic
You can check your code if your domain is hardcoded with http somewhere, e.g http://luckynote.io
This can be anywhere, for example in your configuration file or in any other file part of your application. You can ssh to your server and use grep to search for any references of the domain name:
grep -irl "http://luckynote.io *
You need to check your database as well, because the domain name can be stored in some table/row with http, so you can search in the database as well. I don’t know if you’re running MySQL or MariaDB, but if you have phpMyAdmin installed, you can search for http://luckynote.io in every table in your database and update those to https instead.
I hope this helps.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.