My UniFi site is unifi.cdsolutions.net and SSL labs show site is secure but when i visit it shows NOT SECURE - What else do i need to check??
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!
Accepted Answer
Ok Thank you!!- There is a port number that is added to the end of the unifi.cdsolutions.net:XXXX ---- Is there anything I should be doing with that as far as SSL or with my DNS settings?? Im really the only one that uses the sites but just concerning all the browsers are showing not secure… I have a ubnt cloud also and ubiquiti integrated lets encrypt into the program so setup is VERY simple and shows secure.
Does your webserver have a 301 non-ssl -> ssl redirect in it?
For my configuration using NGINX that would look something like this…
server {
listen 80;
server_name domain.name;
...
location / {
return 301 https://www.domain.name$request_url;
}
...
}
That was it… I needed to open site with out the port at the end and get the default page. Now we are showing secure. Thanks!
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.