soatok/faq-off

Challenge-Response Automation

v0.4.0 2020-04-18 05:24 UTC

This package is auto-updated.

Last update: 2024-04-10 17:18:51 UTC


README

Support on Patreon Linux Build Status Latest Stable Version Latest Unstable Version License

FAQ Off lets you build gamebook-style FAQ websites to counteract sealioning and mob harassment on social media.

FAQ Off is a self-hostable microservice based on Slim Framework 3 and AnthroKit, developed by Soatok live on his Twitch.tv channel.

Public demo: https://faq.dhol.es

Invite links are given to Patreon supporters at the Brilliant tier and higher.

To learn more, please see the Patreon post that introduced FAQ Off.

FAQ Off Features at a Glance

  • Interactive Question and Answer Website:
    • Guide your readers to the answers to their question.
    • Short-circuit common lines of disruptive discourse.
      Write once, answer ad nauseum!
  • HTML and Markdown Support
  • Troll and Spam Defense:
    • Administrators can enable "invite only" mode, which requires an invitation code from an existing user to sign up.
    • The invitation tree: Administrators can see who invited who, to identify common entry points of misbehaving users to curate their own community.
  • Collaboration:
    • Users can share an Author profile with colleagues and publish as a group.
    • Users can belong to an unlimited number of Authors.
    • Authors can share access to an unlimited number of users, or just one.
  • Security:
    • Entries are written in HTML / Markdown and processed by HTML Purifier to protect against cross-site scripting attacks.
    • Passwords are stored securely, or you can use Twitter.
    • Your username or Twitter handle is only knowable by administrators. A randomly generated Public ID is provided to keep your login handle and/or Twitter handle anonymous to everyone else.

Installation

Getting the Code and Dependencies

First, clone the git repository.

git clone https://github.com/soatok/faq-off target-dir-name

Next, run composer install --no-dev inside the destination directory.

Database Setup

Run bin/create-config.php to create a local configuration file. You should have valid PostgreSQL database credentials onhand at this stage.

Next, run bin/install to finish installing the database tables.

Webserver Configuration

Make sure you configure your virtual host to use the public directory as its document root.

  • BAD: /var/www/faq-off
  • Good: /var/www/faq-off/public

General rule: If your users can read this README.md file, you've configured your server incorrectly and need to go another layer down.

It's highly recommended that you use HTTPS (TLSv1.3, TLSv1.2). If you cannot afford a TLS certificate, Let's Encrypt offers free certificates with automatic renewal (via certbot).

For example, an nginx configuration might look like this:

server {
    listen 443 ssl;
    listen [::]:443 ssl;

    ssl_certificate /etc/letsencrypt/live/faq.example.com/fullchain.pem;
    ssl_certificate_key /etc/letsencrypt/live/faq.example.com/privkey.pem;

    include snippets/ssl-params.conf;

    root /var/www/faq-off/public;

    server_name faq.example.com;

    index index.php index.html index.htm;

    location ~ \.php$ {
        include snippets/fastcgi-php.conf;
        fastcgi_pass unix:/var/run/php/php7.3-fpm.sock;
    }
    location / {
        # First attempt to serve request as file, then
        # as directory, then fall back to displaying a 404.
        try_files $uri $uri/ /index.php?$args;
    }

    location ~ /.well-known {
        allow all;
    }
}

server {
    listen 80;
    listen [::]:80;

    root /var/www/faq-off/public;
    index index.html index.htm;

    server_name faq.example.com;

    location ~ /.well-known {
        allow all;
    }

    location / {
        # First attempt to serve request as file, then
        # as directory, then fall back to displaying a 404.
        try_files $uri $uri/ =404;
    }

    # Redirect to HTTPS
    return 301 https://faq.example.com$request_uri;
}