BluB
BluB
Explore posts from servers
CDCloudflare Developers
Created by BluB on 12/19/2024 in #general-help
SSL is enabled no matter what I do
Disabled all of em and it works fine now
7 replies
CDCloudflare Developers
Created by BluB on 12/19/2024 in #general-help
SSL is enabled no matter what I do
I figured it out, there’s a lot of “auto http” settings under edge certificates settings
7 replies
CDCloudflare Developers
Created by BluB on 12/19/2024 in #general-help
SSL is enabled no matter what I do
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
7 replies
CDCloudflare Developers
Created by BluB on 12/19/2024 in #general-help
SSL is enabled no matter what I do
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;
}
}
7 replies