Fixes and line height

This commit is contained in:
Reimar 2025-08-03 11:41:14 +02:00
parent 883734aa7e
commit 72fbff60ec
Signed by: Reimar
GPG Key ID: 93549FA07F0AE268
2 changed files with 9 additions and 6 deletions

View File

@ -8,6 +8,10 @@ body {
padding: 0 20px; padding: 0 20px;
} }
p {
line-height: 1.5;
}
time { time {
color: #757575; color: #757575;
} }

View File

@ -93,13 +93,13 @@ map "$scheme+$http_upgrade_insecure_requests" $upgrade {
server { server {
listen 80; listen 80;
listen 443 ssl; listen 443 ssl;
server_name example.com; server_name example.com;
location / { location / {
# ... # ...
} }
if ($upgrade) { if ($upgrade) {
return 301 https://$host$request_uri; return 301 https://$host$request_uri;
} }
@ -114,9 +114,8 @@ server {
the actual user's request. the actual user's request.
</p> </p>
<p> <p>
Luckily, Cloudflare sends a header along with its request, Luckily, Cloudflare sends a header along with its request, telling
telling whether the user wanted HTTP or HTTPS. This one is whether the user requested HTTP or HTTPS. This one is called
called
<a href="https://developers.cloudflare.com/fundamentals/reference/http-headers/#cf-visitor"> <a href="https://developers.cloudflare.com/fundamentals/reference/http-headers/#cf-visitor">
<code>CF-Visitor</code><!-- <code>CF-Visitor</code><!--
--></a>, --></a>,