Minimalistic ActivityPub server
Go to file
2023-03-04 00:26:50 +01:00
doc Updated documentation. 2023-02-20 06:10:51 +01:00
examples Minor URL formatting tweaks. 2023-01-13 07:02:04 +01:00
.gitignore [.gitignore] new file. 2022-09-27 09:06:03 +02:00
activitypub.c Reject MUTEd actor messages ASAP with a 403 status. 2023-03-04 00:26:50 +01:00
data.c Added the url to srv_archive(). 2023-03-02 17:13:17 +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 Moved the angry emoticon above the sad one to avoid clashes. 2023-02-01 10:09:11 +01:00
html.c Don't inline empty avatars in og:avatar meta property. 2023-02-26 20:23:02 +01:00
http.c Add the baseurl to the user agent in the signed GET. 2023-03-02 17:28:29 +01:00
httpd.c Added the url to srv_archive(). 2023-03-02 17:13:17 +01:00
LICENSE Updated year in copyright notices. 2023-01-17 09:50:16 +01:00
main.c New boolean argument 'priv' to msg_note(). 2023-02-20 09:32:44 +01:00
Makefile Updated dependencies. 2023-01-08 10:32:23 +01:00
README.md Minor README tweak. 2023-02-05 11:23:10 +01:00
RELEASE_NOTES.md Updated RELEASE_NOTES. 2023-02-21 06:20:13 +01:00
snac.c Moved srv_archive() to data.c. 2023-03-01 08:09:56 +01:00
snac.h Added the url to srv_archive(). 2023-03-02 17:13:17 +01:00
TODO.md Updated TODO. 2023-03-03 21:13:42 +01:00
upgrade.c New utility function mkdirx(). 2023-02-07 09:25:01 +01:00
utils.c New inbox collection functions. 2023-03-02 08:43:50 +01:00
webfinger.c Use a shorter timeout for first output connections. 2023-01-24 15:06:58 +01:00
xs_curl.h Changed the way the content-length is set. 2023-03-03 22:40:37 +01:00
xs_encdec.h Backport from xs. 2023-01-28 17:49:02 +01:00
xs_glob.h Backport from xs. 2023-01-28 17:49:02 +01:00
xs_httpd.h Add OK or ERROR to HTTP response. 2023-02-14 08:29:21 +01:00
xs_io.h Backport from xs. 2023-01-28 17:49:02 +01:00
xs_json.h Backport from xs. 2023-02-28 11:22:52 +01:00
xs_mime.h Updated year in copyright notices. 2023-01-17 09:50:16 +01:00
xs_openssl.h Backport from xs. 2023-01-28 17:49:02 +01:00
xs_regex.h Backport from xs. 2023-01-28 17:49:02 +01:00
xs_set.h Backport from xs. 2023-01-28 17:49:02 +01:00
xs_socket.h Updated year in copyright notices. 2023-01-17 09:50:16 +01:00
xs_time.h Backport from xs. 2023-01-28 17:49:02 +01:00
xs_version.h Backport from xs. 2023-02-28 11:22:52 +01:00
xs.h Backport from xs. 2023-02-16 09:32:42 +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