featherwiki: Disable caching to avoid 412 errors

Synchronize the Apache server configuration with TiddlyWiki.

Signed-off-by: Joseph Nuthalapati <njoseph@riseup.net>
[sunil: Drop no-cache and must-revalidate directives as they are redundant]
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
This commit is contained in:
Joseph Nuthalapati 2025-07-02 11:00:16 +05:30 committed by Sunil Mohan Adapa
parent 98d4327c49
commit 3798e519d4
No known key found for this signature in database
GPG Key ID: 43EA1CFF0AA7C5F2

View File

@ -9,6 +9,11 @@ Alias /featherwiki /var/lib/featherwiki
<IfModule mod_auth_pubtkt.c>
TKTAuthToken "admin" "wiki"
</IfModule>
# Disable caching
<IfModule mod_headers.c>
Header set Cache-Control "no-store"
</IfModule>
</Location>
<Directory /var/lib/featherwiki>