Commit
Author: Kevin Schoon [me@kevinschoon.com]
Hash: 61b20f8cb6f0921bf7cf0ddbd5c1745dad7c50de
Timestamp: Mon, 21 Oct 2024 20:24:19 +0000 (3 months ago)

+12 -12 +/-1 browse
update example config file
1diff --git a/config.example.toml b/config.example.toml
2index 2607305..c66b705 100644
3--- a/config.example.toml
4+++ b/config.example.toml
5 @@ -2,7 +2,7 @@
6 site_name = "🌄 Ayllu"
7
8 # A valid URI that identifies this server on the global internet
9- origin = "localhost"
10+ origin = "localhost:8080"
11
12 # sysadmin contact address
13 sysadmin = "admin@ayllu-forge.org"
14 @@ -81,18 +81,18 @@ export_all = false
15 # job for every commit in the repository.
16 timeout = 1800
17
18-
19- # List of authors associated with this site as returned via webfinger queries
20- # see https://datatracker.ietf.org/doc/html/rfc7033 and https://webfinger.net/
21- # for more details.
22+ # List of authors associated with this site
23 [[authors]]
24- # email address used to match the query
25- email = "user@example.com"
26- # public links associated with this author
27- links = [
28- {rel = "http://webfinger.net/rel/profile-page", href = "https://example.com", mime_type = "text/html"},
29- {rel = "http://webfinger.net/rel/profile-page", href = "https://fosstodon.org/@example", mime_type = "text/html"},
30- {rel = "http://webfinger.net/rel/avatar", href = "https://example.com/profile.png", mime_type = "image/png"}
31+ # E-mail address of the author
32+ email = "example@example.org"
33+ # Optional "tagline" associated with the author
34+ tagline = "Programmer interested free software"
35+ # Optional link to an avatar containing an image representing the author
36+ avatar = { url = "https://example.org/avatar.png", mime_type = "image/png" }
37+ # Array of personal websites, social media, etc. associated with the author
38+ profiles = [
39+ { url = "https://example.com", mime_type = "text/html"},
40+ { url = "https://example.org/@example", mime_type = "text/html"},
41 ]
42
43 [http]