From: Quentin Rameau Date: Sun, 5 Jan 2025 11:01:37 +0000 (+0100) Subject: Request HTTPS by default instead of HTTP X-Git-Url: http://git.skullheadx.com/nixos/static/tech/index.html?a=commitdiff_plain;h=b3ba9f59919c33d6a47aaa759f99aef61ee768a9;p=surf.git Request HTTPS by default instead of HTTP This might be more reasonable privacy-wise in 2025. --- diff --git a/surf.c b/surf.c index 18d65d7..ec74aa8 100644 --- a/surf.c +++ b/surf.c @@ -579,7 +579,7 @@ loaduri(Client *c, const Arg *a) url = g_strdup_printf("file://%s", path); free(path); } else { - url = g_strdup_printf("http://%s", uri); + url = g_strdup_printf("https://%s", uri); } if (apath != uri) free(apath);