5.2 KiB
fediblock-backend
fediblock-backend turns form data into JSON and opens a pull request on FediBlock/data. Also included are tools to generate a HTML list and an RSS generator.
Usage
# Use 100 MiB cache with a 1 MiB memory zone (enough for ~8,000 keys).
# Delete data that has not been accessed for 10 minutes.
fastcgi_cache_path /var/cache/nginx/fediblock levels=1:2 max_size=100m
keys_zone=fediblock:1m inactive=10m use_temp_path=off;
fastcgi_cache_key "$scheme$request_method$host$request_uri";
add_header X-Cache $upstream_cache_status;
server {
# […]
expires 30m;
location ~* "(png|jpe?g|webp|gif)$" {
expires 6d;
}
location /add {
include /etc/nginx/fastcgi_params;
fastcgi_pass unix:/var/run/cgi-fcgiwrap.socket-1;
fastcgi_param SCRIPT_FILENAME /usr/bin/fediblock-backend;
fastcgi_param HOME "/var/lib/nginx"; # When I didn't set it, HOME was /root.
}
location /rss {
include /etc/nginx/fastcgi_params;
fastcgi_pass unix:/var/run/cgi-fcgiwrap.socket-1;
fastcgi_param SCRIPT_FILENAME /usr/bin/fediblock-backend-gen_rss;
fastcgi_param HOME "/var/lib/nginx";
fastcgi_cache fediblock;
fastcgi_cache_valid 200 15m; # Cache answers for up to 15 minutes.
fastcgi_cache_lock on; # Relay only one identical request at a time.
}
}
sudo -u nginx ssh-keygen -t ed25519 -f ~nginx/.local/share/fediblock-backend/ssh_id
Don’t forget to add the key to the data repo.
Generate an access token and save it in
~nginx/.local/share/fediblock-backend/gitea_access_token
.
Note
|
On non-Linux systems the data path is ~nginx/.fediblock-backend unless
XDG_DATA_HOME is set.
|
Make sure the user that runs the CGI programs can create lockfiles. In Linux,
the locations are /run/user/<UID>
or /run/lock
, on UNIX the location is
/var/run
. If none of these locations exist, /tmp
is used as a fallback.
Generate HTML blocklist
After compiling, run fediblock-backend-gen_html
. The screenshots will be
copied into the target directory and the output will be the HTML file.
~/blocklist/
fediblock-backend-gen_html ~/blocklist > ~/blocklist/index.html
Existing screenshots will not be overwritten.
Note
|
The RSS generator expects the blocklist to be in
http(s)://your-domain/blocklist/ .
|
Install
From source
Dependencies
Get sourcecode
git clone https://schlomp.space/FediBlock/backend.git
Compile
mkdir -p build && cd build
cmake ..
cmake --build . -- --jobs=$(nproc --ignore=1)
-
-DCMAKE_BUILD_TYPE=Debug
for a debug build. -
-DWITH_TESTS=YES
if you want to compile the tests. -
-DWITH_CLANG-TIDY=YES
to check the sourcecode with clang-tidy while compiling. -
One of:
-
-DWITH_DEB=YES
if you want to be able to generate a deb-package. -
-DWITH_RPM=YES
if you want to be able to generate an rpm-package.
-
To create a deb or rpm package, run make package
after compiling.