[PureBlog] Blogging platform

PureBlog for YunoHost

Integration level
Install PureBlog with YunoHost

Overview

PureBlog is a simple, flat‑file blogging platform with a Markdown‑first editor and a lightweight admin area. It stores posts and pages as Markdown files on disk—no database required.

Screenshots

Links

6 Likes

Great ! Thank you for this.

Just discovered this blog platform through Kevs blog and wanted to test it.

Thanks @ericg for this! Have a nice day/night!

Hi! How did testing go? Have you run into any 404 errors by any chance?

I always get a 404 error when I try to open the blog(

Check this issue. I solved it changing /etc/nginx/conf.d/your.domain.d/pureblog.conf:

 alias /var/www/pureblog/;

to

root /var/www/pureblog/;

AI Slop

It didn’t help me.

I have an error in my nginx logs: “/usr/share/nginx/htmlindex.php” failed (2: No such file or directory)

There is no such file at this path.

My bad, I forgot that it’s also necessary to change in the /etc/nginx/conf.d/your.domain.d/pureblog.conf:

try_files $uri $uri/ index.php;

to

try_files $uri $uri/ /index.php?$query_string;

This is recommended in official documentation. I just opened a pull request in the Yunohost package to fix this.

2 Likes

Thanks!

What is the point of this comment ? Do you know something that we others do not ?
Sharing it would be useful to all of us.