From 72fbff60ecb64200f9e4602dc791a643141e8f5f Mon Sep 17 00:00:00 2001 From: Reimar Date: Sun, 3 Aug 2025 11:41:14 +0200 Subject: [PATCH] Fixes and line height --- static/assets/style.css | 4 ++++ static/upgrade-insecure-requests.html | 11 +++++------ 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/static/assets/style.css b/static/assets/style.css index 1b29d91..bf6e7a1 100644 --- a/static/assets/style.css +++ b/static/assets/style.css @@ -8,6 +8,10 @@ body { padding: 0 20px; } +p { + line-height: 1.5; +} + time { color: #757575; } diff --git a/static/upgrade-insecure-requests.html b/static/upgrade-insecure-requests.html index 1dbccec..af53928 100644 --- a/static/upgrade-insecure-requests.html +++ b/static/upgrade-insecure-requests.html @@ -93,13 +93,13 @@ map "$scheme+$http_upgrade_insecure_requests" $upgrade { server { listen 80; listen 443 ssl; - + server_name example.com; - + location / { # ... } - + if ($upgrade) { return 301 https://$host$request_uri; } @@ -114,9 +114,8 @@ server { the actual user's request.

- Luckily, Cloudflare sends a header along with its request, - telling whether the user wanted HTTP or HTTPS. This one is - called + Luckily, Cloudflare sends a header along with its request, telling + whether the user requested HTTP or HTTPS. This one is called CF-Visitor,