1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2025-02-22 21:40:15 +01:00

explain what's going on in this fork

This commit is contained in:
R Odili 2015-12-22 02:08:25 -05:00
parent d5e11b8fd9
commit 3d5404d589

18
README.md Normal file → Executable file
View File

@ -1,7 +1,21 @@
vichan - A lightweight and full featured PHP imageboard. modified vichan
======================================================== ========================================================
About OdiliTime Modifications
-----------------------
This is a reduced disk-IO version that does not write the HTML or JSON files to disk.
It writes them to a redis-backed memory store which then can be quickly retrieved by a webserver
without hitting the disk at all. See nginx's HttpRedis2Module module for more of what I mean.
If you don't have HttpRedis2Module, i've included a 404.php that you can use with an htaccess like:
# for /vichan/* base
RewriteEngine On
RewriteRule ^[^/]+/$ %{REQUEST_URI}/../../404.php [NC,L]
RewriteRule ^[^/]+/[^/]+$ %{REQUEST_URI}/../../404.php [NC,L]
RewriteRule ^[^/]+/res/[^/]+$ %{REQUEST_URI}/../../404.php [NC,L]
About vichan
------------ ------------
vichan is a free light-weight, fast, highly configurable and user-friendly vichan is a free light-weight, fast, highly configurable and user-friendly
imageboard software package. It is written in PHP and has few dependencies. imageboard software package. It is written in PHP and has few dependencies.