blob: 8d9dd50ef42e0ef47ea4df21cf7d4905cdb9567b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
{
debug
admin off
auto_https off
http_port 8000
}
http://template.localhost {
root example/static
# If a directory has an index.gmi file, then that file will be served when
# the directory is requested.
try_files {path} {path}/index.gmi
@gmi path_regexp \.gmi$
# Handle all requests for .gmi files specially.
route @gmi {
templates {
# The templates directive is given a different root, so that other
# template snippets within the tpl directory could theoretically be
# used within render_gemtext.html.
root example
# Include the gemtext extention to make the gemtext function
# available within the template.
extensions {
gemtext
}
}
# We "respond" with a template body here, which will be processed by the
# templates directive above. This body simply imports the template we
# actually want. Setting Content-Type is required because there's no
# actual file for Caddy to determine the value from.
header Content-Type text/html
respond `{{ include "tpl/render_gemtext.html" }}`
}
# All other files are handled directly by the file_server.
file_server
}
|