Minimalistic ActivityPub server
Go to file
2022-12-27 10:36:21 +01:00
doc Updated documentation. 2022-12-08 10:14:07 +01:00
examples Improve Docker image generation 2022-12-14 11:46:16 +01:00
.gitignore [.gitignore] new file. 2022-09-27 09:06:03 +02:00
activitypub.c Fixed log level for 'serving actor'. 2022-12-24 07:05:01 +01:00
data.c Log write errors in _object_add() more prominently. 2022-12-18 17:51:23 +01:00
docker-compose.yaml Add docker-compose support, so a working development server with HTTPS can be started with: 2022-12-12 10:26:38 +00:00
Dockerfile Improve Docker image generation 2022-12-14 11:46:16 +01:00
format.c Some code reordering to placate scan-build's wrath. 2022-12-14 04:55:47 +01:00
html.c Add a link rel=alternate to the user RSS. 2022-12-25 15:45:46 +01:00
http.c Use the time functions of xs_time.h. 2022-10-02 09:27:17 +02:00
httpd.c In server_get_handler(), body must be a dynamic string. 2022-12-13 15:40:59 +01:00
LICENSE Updated LICENSE. 2022-10-20 14:26:34 +02:00
main.c Replaced all calls to post() with enqueue_message(). 2022-12-16 07:16:00 +01:00
Makefile Makefile improvements 2022-12-09 21:07:50 +05:00
README.md Add docker-compose support, so a working development server with HTTPS can be started with: 2022-12-12 10:26:38 +00:00
RELEASE_NOTES.md Updated RELEASE_NOTES. 2022-12-23 12:25:26 +01:00
snac.c Some code reordering to placate scan-build's wrath. 2022-12-14 04:55:47 +01:00
snac.h Version 2.17 RELEASED. 2022-12-27 10:36:21 +01:00
TODO.md Updated TODO. 2022-12-25 15:40:41 +01:00
upgrade.c Upgrade timeline/ to private/. 2022-12-03 18:41:44 +01:00
utils.c New command line option 'resetpwd'. 2022-12-04 21:26:24 +01:00
webfinger.c Fixed typo in webfinger_request(). 2022-11-09 07:34:04 +01:00
xs_curl.h More curl timeout tweaks. 2022-12-24 07:05:39 +01:00
xs_encdec.h Backport from xs. 2022-10-25 09:32:41 +02:00
xs_glob.h Backport from xs. 2022-11-24 08:47:02 +01:00
xs_httpd.h Fix 500 errors in (OpenBSD) relayd. 2022-12-20 21:16:51 +00:00
xs_io.h Backport from xs. 2022-12-09 18:43:31 +01:00
xs_json.h Backport from xs. 2022-10-25 09:32:41 +02:00
xs_mime.h Backport from xs. 2022-10-08 07:00:05 +02:00
xs_openssl.h Backport from xs. 2022-10-25 09:32:41 +02:00
xs_regex.h Backport from xs. 2022-11-24 08:47:02 +01:00
xs_set.h Use xs_set in recipient_list() and inbox_list(). 2022-11-28 15:49:56 +01:00
xs_socket.h Backport from xs. 2022-10-08 07:00:05 +02:00
xs_time.h New command-line option purge. 2022-10-04 18:46:12 +02:00
xs_version.h Backport from xs. 2022-12-17 18:52:57 +01:00
xs.h Backport from xs. 2022-12-11 10:33:01 +01:00

snac

A simple, minimalistic ActivityPub instance

Features

  • Lightweight, minimal dependencies
  • Extensive support of ActivityPub operations, e.g. write public notes, follow users, be followed, reply to the notes of others, admire wonderful content (like or boost), write private messages...
  • Simple but effective web interface
  • Multiuser
  • Easily-accessed MUTE button to silence morons
  • Tested interoperability with related software
  • No database needed
  • Totally JavaScript-free
  • No cookies either
  • Not much bullshit

About

This program runs as a daemon (proxied by a TLS-enabled real httpd server) and provides the basic services for a Fediverse / ActivityPub instance (sharing messages and stuff from/to other systems like Mastodon, Pleroma, Friendica, etc.).

This is not the manual; man pages snac(1) (user manual), snac(5) (formats) and snac(8) (administrator manual) are what you are looking for.

snac stands for Social Networks Are Crap.

Installation

This 2.x release is written in C (unlike the 1.x prototype, which was written in Python). The only external dependencies are openssl and curl.

On Debian/Ubuntu, you can satisfy these requirements by running

    apt install libssl-dev libcurl4-openssl-dev

On OpenBSD you also need to install curl:

    pkg_add curl

Run make and then make install as root.

See the administrator manual on how to proceed from here.

Testing via Docker

A docker-compose file is provided for development and testing. To start snac with an nginx HTTPS frontend, run:

docker-compose build && docker-compose up

This will:

  • Start snac, storing data in data/
  • Configure snac to listen on port 8001 with a server name of localhost (see examples/docker-entrypoint.sh)
  • Create a new user testuser and print the user's generated password on the console (see examples/docker-entrypoint.sh)
  • Start nginx to handle HTTPS, using the certificate pair from nginx-alpine-ssl/nginx-selfsigned.* (see examples/nginx-alpine-ssl/entrypoint.sh)

License

See the LICENSE file for details.

Author

grunfink @grunfink@comam.es