ericg
April 18, 2026, 9:49am
1
6 Likes
Tiron
April 18, 2026, 1:36pm
2
Great ! Thank you for this.
Just discovered this blog platform through Kevs blog and wanted to test it.
cricri
April 19, 2026, 5:46pm
3
Thanks @ericg for this! Have a nice day/night!
cricri
April 21, 2026, 5:06am
4
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(
cricri
April 27, 2026, 5:53pm
7
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/;
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.
cricri
April 28, 2026, 9:21pm
11
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
Tiron
May 5, 2026, 5:44pm
13
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.