How do I use https with Grav?

I’m trying to locate a setting to enable https in grav, so that menu links and icons will be converted into https instead of http links. The only setting I can find is “url:” in site.yaml. And that doesnt do the trick. What Am I missing? The site I am trying to fix: https://detfriekompagni.dk/

HTTPS requires an SSL certificate that is used by the HTTP server to encrypt the traffic with the client browsers. It is unrelated to GRAV (which is broadly only responsible for the HTML content generation).
Your hosting provider might sells you different types of certificates (typically signed by a globally trusted root certificated that is installed in each browser client).
For internal Intranet websites, you might create a self-signed certificate (the browser client will complain about this; you don’t want your customer to suffer from this).

Thanks for the answer franchan, but I was not asking about how to obtain https. It is already enabled through cloudflare (flexible ssl) - I am talking about dynamically changing links so they all start with https:// - for example JS and images related to some plugins seem to be hardcoded to be http.

You might put something like this kind of redirection into your .htaccess (replace ). I assume you’re using apache style HTTP server …

Use TLS only

RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https:///$1 [R,L]

Thanks Franchan, will try it out :slight_smile: