https://shipreadyai.dev/learn/findings/o1-mixed-content

> Discover all available pages from the documentation index at https://shipreadyai.dev/llms.txt

# The page loads some files over plain http

Browsers block or downgrade these files, so parts of the page can break, and the padlock treatment is lost.

## Why AI-built apps get this

An AI builder gives you HTTPS on the hosted address and stops there. The moment you point your own domain at it, the redirect, the certificate and every hard-coded http:// in a copied snippet become yours. Nothing in the build warns you, because from the inside everything still works.

## Evidence line

GET http://example.com returned 301 to https://example.com, certificate valid to 2026-12-01

## The fix

Change the http:// addresses in the page to https:// or to relative paths. First three seen: {examples}.

## Prompt

Some assets load over plain http, for example {examples}. Change those addresses to https:// or to relative paths so the browser never mixes protocols.
