HTTPS issue #910
|
Might be missing something in the setup but when people go to any HTTPS page via the proxy the page comes back without formatting. Is there something we need to do with a cert. setup or proxy setup so that https pages pull across the wire correctly? |
Answered by
justcoding121
Aug 3, 2026
Replies: 1 comment
|
Sounds like CSS/JS aren't loading ? usually a cert trust issue, not "missing formatting" from the HTML itself. Checklist:
proxyServer.CertificateManager.CreateRootCertificate();
proxyServer.CertificateManager.TrustRootCertificate(); // or TrustRootCertificateAsAdmin()
If you're rewriting HTML in Closing for now ? reopen with a failing URL + any console/cert errors if it's still broken after trusting the root. |
0 replies
Answer selected by
justcoding121
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Sounds like CSS/JS aren't loading ? usually a cert trust issue, not "missing formatting" from the HTML itself.
Checklist:
ExplicitProxyEndPoint(..., decryptSsl: true)and that the browser trusts "Titanium Root Certificate Authority".NET::ERR_CERT_*).If you're rewriting HTML in
BeforeResponse, make sure you're not breaking relative URLs or stripping link tags.Closing for now ? reopen with a failing URL …