Revise content structure (page bundles)
This commit is contained in:
parent
9128227ab1
commit
cbf3e9df84
15 changed files with 14 additions and 8 deletions
|
@ -0,0 +1,29 @@
|
|||
---
|
||||
title: "Simpler technology to bring knowledge and control"
|
||||
author: ""
|
||||
date: 2021-03-02T14:18:53+02:00
|
||||
categories:
|
||||
tags:
|
||||
- opensource
|
||||
- webdesign
|
||||
|
||||
draft: true
|
||||
type: "post"
|
||||
description: "My – also new – gitea theme appears to be usable, as long as you're not logged in."
|
||||
---
|
||||
|
||||
I've read so many interesting articles about a simpler, more efficient, content-oriented and privacy-friendly web in the last month and then even figured there already is such a thing: [The gemini protocol](https://gemini.circumlunar.space/).
|
||||
|
||||
So inspired by all this and driven by my already long-term interest in optimising to the point where I can actually understand what I am and especially my computer is doing to the last bit and
|
||||
|
||||
- learning python
|
||||
- optimizing vrifox.cc
|
||||
- replacing gitea with something simpler
|
||||
- advantages
|
||||
- better for environment
|
||||
- easier to understand and control
|
||||
- downsides
|
||||
- you have to be interested (at least for most some benefits)
|
||||
- Links / Read section
|
||||
- blogroll?
|
||||
- books read section?
|
|
@ -0,0 +1,27 @@
|
|||
---
|
||||
title: "Privacy friendlier Nginx logging"
|
||||
author: "Vrifox"
|
||||
date: 2021-05-15T21:49:54+02:00
|
||||
featured_image:
|
||||
categories:
|
||||
tags:
|
||||
|
||||
draft: true
|
||||
type: "post"
|
||||
---
|
||||
|
||||
Yesterday I changed the logging behaviour of my nginx. I did this to make it more privacy friendly and to declutter my log files. \
|
||||
The ip address anonymization part is taken from [Ascraues Privacy Policy ](https://ascraeus.org/page/privacy/).
|
||||
|
||||
```
|
||||
map $remote_addr $anon_remote_addr {
|
||||
~(?P<ip>\d+\.\d+)\. $ip.0.0;
|
||||
~(?P<ip>[^:]+:[^:]+): $ip::;
|
||||
default 0.0.0.0;
|
||||
}
|
||||
|
||||
log_format privacy '$anon_remote_addr [$time_local] '
|
||||
'"$request" $status $bytes_sent ';
|
||||
|
||||
access_log /var/log/nginx/access.log privacy;
|
||||
```
|
28
content/blog/_draft/the-broken-dns/the-broken-dns.en.md
Normal file
28
content/blog/_draft/the-broken-dns/the-broken-dns.en.md
Normal file
|
@ -0,0 +1,28 @@
|
|||
---
|
||||
title: "The broken DNS"
|
||||
author: ""
|
||||
date: 2021-03-05T13:54:53+02:00
|
||||
categories:
|
||||
tags:
|
||||
- opensource
|
||||
|
||||
draft: true
|
||||
type: "post"
|
||||
description: "My – also new – gitea theme appears to be usable, as long as you're not logged in."
|
||||
---
|
||||
|
||||
I've read so many interesting articles about a simpler, more efficient, content-oriented and privacy-friendly web in the last month and then even figured there already is such a thing: [The gemini protocol](https://gemini.circumlunar.space/).
|
||||
|
||||
So inspired by all this and driven by my already long-term interest in optimising to the point where I can actually understand what I am and especially my computer is doing to the last bit and
|
||||
|
||||
- learning python
|
||||
- optimizing vrifox.cc
|
||||
- replacing gitea with something simpler
|
||||
- advantages
|
||||
- better for environment
|
||||
- easier to understand and control
|
||||
- downsides
|
||||
- you have to be interested (at least for most some benefits)
|
||||
- Links / Read section
|
||||
- blogroll?
|
||||
- books read section?
|
Loading…
Add table
Add a link
Reference in a new issue