all repos — honk @ b4912550c2dfe3fb64d772ccb0db1c7b13d91a1a

my fork of honk

docs/manual.txt (view raw)

 1
 2Instructions for running of the honk.
 3
 4-- posting
 5
 6Should work as expected.
 7
 8Limited markdown support:
 9	**bold** and *italics*
10	`code` and ```code block```
11
12Large images are rescaled and reduced.
13
14-- following
15
16In order to follow somebody, you need to enter one of two identifiers.
17
18The easiest is probably their handle, the thing that resembles an email.
19@name@example.com for example.
20
21Alternatively, one may directly enter the actor ID, which is a URL that looks
22like https://example.com/users/name. Note that the commonly seen URL with
23@name in it is not their actor ID and won't work.
24
25Followed honkers may be assigned to combos, listing all their honks together.
26
27Selecting just peeping won't actually follow them. (Incomplete feature.)
28Cant be useful for managing as part of a combo, however.
29
30-- zonking
31
32You can zonk anything you like (or dislike), either your own honk or
33those of others that you're tired of seeing. Be advised that deletion
34works poorly in a federated environment. It's more like please disregard.
35
36The killzone supports muting unwanted contacts. One may mute an actor
37(zonker), a domain (zurl), or thread (zonvoy).
38
39-- privacy
40
41Honks are public. Welcome to the internet.
42
43Received messages are only visible when logged in, regardless of addressing.
44
45Received messages that are less than public are tagged with a red border.
46
47-- css
48
49Custom CSS may be provided by creating a views/local.css file.
50
51-- message
52
53A custom server message may be set adding a ('servermsg', 'message') entry to
54the config table using sqlite3.
55
56-- emus
57
58Custom emus may be provided by creating and populating the emus directory.
59emus may be referenced when composing a honk via colon wrapping. How pleasant.
60This :example: will be replaced by emus/example.png.
61
62-- cleanup
63
64One may occasionally run `honk cleanup` to free up internal space in the
65database. (This does not run vacuum, so the file size will not immediately
66shrink.)
67
68-- add user
69
70Running `honk adduser` can add additional users. This is discouraged.
71
72-- proxy
73
74honk requires a TLS terminating reverse proxy be configured. It communicates
75with other servers via https URLs.
76
77If the proxy is configured to support caching, be mindful of the fact that
78ActivityPub requests vary based on the Accept and Content-Type headers.
79
80ActivityPub in practice uses HTTP signatures to verify requests. In order for
81this to work, the backend server must receive certain header fields
82unmodified. In particular, the Host header and the message content cannot be
83altered.
84
85Specifically, for nginx: proxy_set_header Host $http_host;