Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 469 Bytes

README.md

File metadata and controls

24 lines (18 loc) · 469 Bytes

No Trolls Allowed wiki

Event wiki. More information regarding event on our website notrollsallowed.com.

How to install

Copy config.example.php to config.php and edit values inside file.

Nginx rewrite rules:

server {
    ...
    location / {
        index index.php;
        error_page 404 = @wiki;
    }

    location @wiki {
        rewrite ^/(.*)$ /index.php?title=$1&$args;
    }
    ...
}