Skip to content

Commit e94b29d

Browse files
author
Caleb Callaway
committed
blog: fix Hugo upgrade issues
1 parent d997b8e commit e94b29d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FILES := config.toml $(shell find archetypes assets content layouts static themes)
22

33
preview:
4-
hugo -D --debug server --baseUrl "http://localhost/"
4+
hugo -D --debug server --baseURL "http://localhost/"
55

66
publish: www-update ipfs
77

content/blog/cryptpad.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ summary: "Hosting instructions for Cryptpad, a zero knowledge realtime collabora
66
tags: ["howto", "foss", "security"]
77
---
88

9-
In 2020, Google and I broke up. [DuckDuckGo](https://duckduckgo.com/) has long been my search engine of choice, but this year I replaced Gmail with [ProtonMail](https://protonmail.com/), Google Music died, and I found [Cryptpad](https://cryptpad.fr/), a "Zero Knowledge realtime collaborative editor" which provides everything I need from Google Docs (except [a backup strategy](https://www.redhat.com/sysadmin/world-backup-day)). With this [free, open-source software]((https://github.com/xwiki-labs/cryptpad)) deployed, I can log current events without fear of surveillance.
9+
In 2020, Google and I broke up. [DuckDuckGo](https://duckduckgo.com/) has long been my search engine of choice, but this year I replaced Gmail with [ProtonMail](https://protonmail.com/), Google Music died, and I found [Cryptpad](https://cryptpad.fr/), a "Zero Knowledge realtime collaborative editor" which provides everything I need from Google Docs (except [a backup strategy](https://www.redhat.com/sysadmin/world-backup-day)). With this [free, open-source software](https://github.com/xwiki-labs/cryptpad) deployed, I can log current events without fear of surveillance.
1010

1111
Though the project does not officially support Apache, nginx lacks features I require, so I still took the road less traveled. [A sample Apache proxy config](https://github.com/xwiki-labs/cryptpad/issues/62#issuecomment-270236705) was simple to find; I was particularly grateful for the hot tip regarding WebSocket traffic:
1212

layouts/partials/footer.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
{{ if .Site.Copyright }}
99
<span>{{ .Site.Copyright| safeHTML }}</span>
1010
{{ end }}
11-
{{- with (not (in (.Site.Language.Get "disableKinds") "RSS")) }}<span><a href="{{ "blog/index.xml" | absLangURL }}" target="_blank" title="rss"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 20 20" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-rss"><path d="M4 11a9 9 0 0 1 9 9"></path><path d="M4 4a16 16 0 0 1 16 16"></path><circle cx="5" cy="19" r="1"></circle></svg></a></span>{{ end }}
11+
{{- if not (in .Site.Params.disableKinds "RSS") }}<span><a href="{{ "blog/index.xml" | absLangURL }}" target="_blank" title="rss"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 20 20" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-rss"><path d="M4 11a9 9 0 0 1 9 9"></path><path d="M4 4a16 16 0 0 1 16 16"></path><circle cx="5" cy="19" r="1"></circle></svg></a></span>{{ end }}
1212
</div>
1313
</div>
1414
<div class="footer__inner">

0 commit comments

Comments
 (0)