SSL is enabled no matter what I do

I disabled SSL (I think) but my site still attempts to serve https. Attempts is the keyword because it fails to do so whynopadlock.com shows this info:
Certificate Issuer
Google Trust Services
Certificate Type
WE1
Issued On
2024-12-01
Certificate Issuer
Google Trust Services
Certificate Type
WE1
Issued On
2024-12-01
No description
3 Replies
BluB
BluBOP3mo ago
nginx config:
server {
listen 80;
server_name xyz.com; # Replace with your domain or use localhost

root /var/www/mysite;
index index.html;

location / {
try_files $uri $uri/ =404;
}
}
server {
listen 80;
server_name xyz.com; # Replace with your domain or use localhost

root /var/www/mysite;
index index.html;

location / {
try_files $uri $uri/ =404;
}
}
I have a separate service being served on hyper, a rust library. It doesn't have ssl support by itself and integrating it is a pita, but I just want to do a quick demo. Port 80 is nginx as. you see, the service (on a different port) is served by hyper. Chrome cries when SSL is set to Flexible because nginx is cool with ssl but hyper is not, so I get Mixed Content err, attempting to access http from a https site I disabled ssl so I can do my demo now and move to a library that better supports https after. But I can't even do that. I have never used google domain services in my life, no idea what's causing this
Chaika
Chaika3mo ago
What's your website url?
I have never used google domain services in my life, no idea what's causing this
If you're saying that because of the Google Trust Services (GTS) Certificate, Google is just a trusted certificate provider. Cloudflare uses their certificates (as well as others including Let's Encrypt) for normal non-google content, as well as other providers
BluB
BluBOP3mo ago
I figured it out, there’s a lot of “auto http” settings under edge certificates settings Disabled all of em and it works fine now

Did you find this page helpful?