]> Sergey Matveev's repositories - sgblog.git/blob - README.texi
Texinfo 6.8 compatibility
[sgblog.git] / README.texi
1 \input texinfo
2 @documentencoding UTF-8
3 @settitle SGBlog
4
5 @copying
6 Copyright @copyright{} 2020 @email{stargrave@@stargrave.org, Sergey Matveev}
7 @end copying
8
9 @node Top
10 @top SGBlog
11
12 SGBlog is minimalistic and simple Git-backed CGI/inetd
13 @url{https://en.wikipedia.org/wiki/Blog, blogging} and
14 @url{https://en.wikipedia.org/wiki/Phlog, phlogging} engine
15 with email-backed comments support, written on @url{https://golang.org/, Go}.
16
17 Its main competitive features:
18
19 @itemize
20 @item Single binary, responsible for both blog and phlog
21 @item @url{https://git-scm.com/, Git} DVCS as a storage for posts and comments
22 @item Single small @url{https://hjson.github.io/, Hjson} configuration file
23 @item Uses @url{https://en.wikipedia.org/wiki/Common_Gateway_Interface, CGI}
24     interface (simplicity, remember?) for dealing with HTTP-server
25 @item Uses
26     @url{https://en.wikipedia.org/wiki/Inetd, inetd}/@url{http://cr.yp.to/ucspi-tcp.html, UCSPI-TCP}
27     interface for working as
28     @url{https://en.wikipedia.org/wiki/Gopher_(protocol), Gopher} server
29 @item Topics (tags/categories) support
30 @item Supports on the fly generation of
31     @url{https://en.wikipedia.org/wiki/Atom_(feed), Atom} feeds
32     for posts, comments and per-post comments
33 @item Single binary for email-backed comments posting
34 @item If access is granted, then everyone can easily create an offline
35     copy of your blog/phlog!
36 @end itemize
37
38 All of that, except for comments, topics and phlog, could be achieved
39 with some Git viewer like @url{https://git.zx2c4.com/cgit/about/, cgit}.
40 But SGBlog also is able to:
41
42 @itemize
43 @item Convert URLs to clickable links
44 @item Convert SHA1-like hashes to blog links itself
45 @item Include relative @code{<link rel>} links for ease of navigation in
46     some browsers
47 @item @url{https://en.wikipedia.org/wiki/Gzip, gzip} compress both HTML
48     pages and Atom feeds
49 @item Respect @url{https://en.wikipedia.org/wiki/HTTP_ETag, ETag}
50     caching for both of them above
51 @end itemize
52
53 @url{http://blog.stargrave.org/example/, Here} is an example blog.
54
55 SGBlog is free software, licenced under
56 @url{https://www.gnu.org/licenses/agpl-3.0.html, GNU AGPLv3}:
57 see the file COPYING for copying conditions.
58
59 @node Comments
60 @unnumbered Comments
61
62 Comments are posted through the email interface, just by sending the
63 message to special address. For example:
64
65 @example
66 $ mutt "mailto:comment@@blog.example.com?subject=BlaBlaBla%20(576540a5b98517b46d0efc791bb90b9121bf147e)" <<EOF
67 This is the comments contents.
68 Could be multilined of course.
69 EOF
70 @end example
71
72 Comments are stored in Git as a @url{https://git-scm.com/docs/git-notes, note}.
73 Those objects could be updated without touching the base commit itself.
74
75 Each comment is just a plaintext with @code{From} and @code{Date}
76 headers. @code{From} is a name of email sender (with email address
77 stripped off).
78
79 Only @code{text/plain} or @code{multipart/signed+text/plain} email
80 messages are accepted and only with UTF-8, US-ASCII, ISO-8859-1
81 character sets. Sane people won't send HTML email anyway, but this is
82 just a precaution.
83
84 Comments are stored in @dfn{recfiles} --
85 @url{https://www.gnu.org/software/recutils/, GNU recutils}
86 human-editable plaintext database format. But they do not contain
87 records description:
88
89 @verbatim
90 %rec: Comment
91 %doc: SGBlog's comment
92 %mandatory: From Date Body
93 %type: Date date
94 @end verbatim
95
96 @node Topics
97 @unnumbered Topics
98
99 Each post can have any number of attached topics (also known as tags or
100 categories). They are whitespace separated single words kept in separate
101 @url{https://git-scm.com/docs/git-notes, note} namespace. You can
102 add/change comments with commands like:
103
104 @example
105 $ git notes --ref=topics add -m "linux hate" @@
106 @end example
107
108 To reset incorrectly added topic:
109
110 @example
111 $ git update-ref refs/notes/topics refs/notes/topics^
112 @end example
113
114 @node Installation
115 @unnumbered Installation
116
117 SGBlog's is written on Go and uses its modules. Hopefully you can
118 install it just by running:
119
120 @example
121 $ go get go.stargrave.org/sgblog/cmd/sgblog
122 $ go get go.stargrave.org/sgblog/cmd/sgblog-comment-add # if you need commenting
123 @end example
124
125 Unfortunately by default it uses HTTPS and Go's third party servers
126 (@code{sum.golang.org}, @code{proxy.golang.org}) that trust neither
127 @code{CACert.org}'s CA (used previously) nor @code{ca.cypherpunks.ru}
128 CAs. So either disable their usage and trust that certificate:
129 @code{GOPRIVATE=go.stargrave.org/sgblog}, or clone its source code
130 manually and build in place:
131 @url{git://git.stargrave.org/sgblog.git},
132 @url{https://git.stargrave.org/sgblog.git}.
133
134 For enabling blog availability you have to use HTTP server with CGI
135 interface. Example part of @url{http://www.lighttpd.net/, lighttpd}'s
136 configuration:
137
138 @example
139 $HTTP["host"] == "blog.example.com" @{
140   server.document-root = www_dir + "/blog.example.com"
141   $HTTP["url"] =~ "^/example" @{
142     alias.url += ("/example" => "/path/to/sgblog")
143     cgi.assign = ("sgblog" => "/path/to/sgblog")
144     setenv.add-environment = (
145       "SGBLOG_CFG" => "/path/to/example.hjson",
146     )
147   @}
148 @}
149 @end example
150
151 And be sure that you have read access to the Git repository, for example
152 by placing @code{lighttpd} user into @code{git} group.
153
154 Example @command{inetd} configuration (for phlog):
155
156 @example
157 gopher stream tcp6 nowait lighttpd /path/to/sgblog sgblog -gopher /path/to/gopher.hjson
158 @end example
159
160 Example @command{UCSPI-TCP} service running under
161 @url{http://cr.yp.to/daemontools.html, daemontools}:
162
163 @example
164 # mkdir -p /var/service/.phlog-ipv6/log
165 # cd /var/service/.phlog-ipv6
166
167 # cat > run <<EOF
168 #!/bin/sh -e
169 uid=\`id -u lighttpd\`
170 gid=\`id -g git\`
171 addr=2001::123
172 exec tcpserver -DRH -u $uid -g $gid -l 0 $addr gopher \
173   sgblog -gopher /path/to/gopher.hjson
174 EOF
175
176 # cat > log/run <<EOF
177 #!/bin/sh -e
178 exec setuidgid whatever-user multilog t ./main
179 EOF
180
181 # chmod -R 755 /var/service/.phlog-ipv6
182 # mv /var/service/.phlog-ipv6 /var/service/phlog-ipv6
183 @end example
184
185 For comments workability you have to configure your SMTP server to feed
186 incoming messages to @command{sgblog-comment-add} utility. For example,
187 Postfix'es @file{/etc/aliases} can contain:
188
189 @example
190 comment: "| /path/to/sgblog-comment-add -git-dir /path/to/blog.git -committer-email comment@@blog.example.com"
191 @end example
192
193 to run that utility for all @code{comment@@} address messages.
194 You must have enough permission to be able to write to Git repository,
195 but Postfix by default runs all that commands from a @code{nobody} user.
196 So possibly you will need to @code{setuid} that executable give
197 permission for @code{nobody} running:
198
199 @example
200 -rwsr-x--- git:nobody sgblog-comment-add
201 @end example
202
203 And also do not forget about @code{lighttpd} user's (possibly in
204 @code{git} group) read permission permissions. Make sure
205 @command{sgblog-comment-add} runs with correctly set @code{-umask} (027
206 by default) for newly created Git objects/files.
207
208 @node Configuration
209 @unnumbered Configuration
210
211 SGBlog is configured via Hjson configuration file. More or less
212 self-describing blog configuration looks like that and contains many
213 optional fields:
214
215 @example
216 @{
217   GitPath: /home/sgblog/blog.git
218   Branch: refs/heads/example
219   Title: "Example blog"
220
221   BaseURL: http://blog.example.com
222   URLPrefix: /example
223
224   AtomId: "urn:uuid:54e6e53f-c615-48f1-812c-6f6b094ebbdd"
225   AtomAuthor: John Doe
226
227   # URL to CSS file, optional
228   CSS: /style.css
229   # Email address of the webmaster, optional
230   Webmaster: "webmaster@@example.com"
231   # URL to about page, optional
232   AboutURL: /
233   # Optional list of optional Git URLs for corresponding <link rel="vcs-git">
234   GitURLs: [
235     git://git.example.com/blog.git
236     https://git.example.com/git/blog.git
237   ]
238
239   # If that ref is set, then comments will be loaded from it
240   CommentsNotesRef: refs/notes/comments
241   # Display link for comment writing, if email is set
242   CommentsEmail: something@@example.com
243
244   # If that ref is set, then topics will be loaded from it
245   TopicsNotesRef: refs/notes/topics
246   # Optional file for topics state caching
247   TopicsCachePath: /path/to/sgblog-topics-cache.gob
248 @}
249 @end example
250
251 Gopher configuration can use the same file, but it requires much less
252 options:
253
254 @example
255 @{
256   GitPath: /home/sgblog/blog.git
257   Branch: refs/heads/example
258   Title: "Example blog"
259
260   GopherDomain: phlog.example.com
261
262   AboutURL: http://blog.example.com/
263
264   # Both are optional
265   CommentsNotesRef: refs/notes/comments
266   CommentsEmail: something@@example.com
267
268   # Both are optional too
269   TopicsNotesRef: refs/notes/topics
270   TopicsCachePath: /path/to/sgblog-topics-cache.gob
271 @}
272 @end example
273
274 @bye