Blob


1 .\"
2 .\" Copyright (c) 2020 Tracey Emery <tracey@traceyemery.net>
3 .\"
4 .\" Permission to use, copy, modify, and distribute this software for any
5 .\" purpose with or without fee is hereby granted, provided that the above
6 .\" copyright notice and this permission notice appear in all copies.
7 .\"
8 .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 .\"
16 .Dd $Mdocdate$
17 .Dt GOTWEBD.CONF 5
18 .Os
19 .Sh NAME
20 .Nm gotwebd.conf
21 .Nd gotwebd configuration file
22 .Sh DESCRIPTION
23 .Nm
24 is the run-time configuration file for
25 .Xr gotwebd 8 .
26 .Pp
27 The file format is line-based, with one configuration directive per line.
28 Any lines beginning with a
29 .Sq #
30 are treated as comments and ignored.
31 .Pp
32 Paths mentioned in
33 .Nm
34 must be relative to
35 .Pa /var/www ,
36 the
37 .Xr chroot 2
38 environment of
39 .Xr httpd 8 .
40 .Sh GLOBAL CONFIGURATION
41 The available global configuration directives are as follows:
42 .Bl -tag -width Ds
43 .It Ic chroot Ar path
44 Set the path to the
45 the
46 .Xr chroot 2
47 environment of
48 .Xr httpd 8 .
49 If not specified then
50 .Pa /var/www
51 will be used.
52 .It Ic prefork Ar number
53 Run the specified number of server processes.
54 .It Ic unix_socket Ar on | off
55 Controls whether the servers will listen on unix sockets by default.
56 .It Ic unix_socket_name Ar path
57 Set the path to the default unix socket.
58 .El
59 .Sh SERVER CONFIGURATION
60 At least one server context must exist for
61 .Xr gotwebd 8
62 to function.
63 In case no server context is defined in the configuration file, a default
64 server context will be used, which listens on a unix socket at
65 .Pa /var/www/run/gotweb.sock
66 and uses default parameters for all applicable settings.
67 .Pp
68 A server context is declared with a unique
69 .Ar name ,
70 followed by server-specific configuration directives inside curly braces:
71 .Pp
72 .Ic server Ar name Brq ...
73 .Pp
74 .Xr gotwebd 8
75 is compatible with TLS Server Name Indication (SNI), provided the
76 .Ar name
77 of a server defined in
78 .Nm
79 corresponds to the name of a server defined in
80 .Xr httpd.conf 5 .
81 .Pp
82 The available server configuration directives are as follows:
83 .Bl -tag -width Ds
84 .It Ic custom_css Ar path
85 Set the path to a custom Cascading Style Sheet (CSS) to be used.
86 If this option is not specified then a default style sheet will be used.
87 .It Ic listen on Ar address Ic port Ar number
88 Configure an address and port for incoming FCGI TCP connections.
89 Valid
90 .Ar address
91 arguments are hostnames, IP4 addresses, IPv6 addresses, and network
92 interface names.
93 The
94 .Ar port
95 argument may be number or a service name defined in
96 .Xr services 5 .
97 .Pp
98 May be specified multiple times to build up a list of listening sockets.
99 However, a given combination of address and port may only be used by
100 one server.
101 .It Ic logo Ar path
102 Set the path to an image file containing a logo to be displayed.
103 .It Ic logo_url Ar url
104 Set a hyperlink for the logo.
105 .It Ic max_commits_display Ar number
106 Set the maximum amount of commits displayed per page.
107 .It Ic max_repos Ar number
108 Set the maximum amount of repositories
109 .Xr gotwebd 8
110 will work with.
111 .It Ic max_repos_display Ar number
112 Set the maximum amount of repositories displayed on the index screen.
113 .It Ic repos_path Ar path
114 Set the path to the directory which contains Git repositories that
115 the server should publish.
116 .It Ic show_repo_age Ar on | off
117 Toggle display of last repository modification date.
118 .It Ic show_repo_cloneurl Ar on | off
119 Toggle display of clone URLs for a repository.
120 This requires the creation of a
121 .Pa cloneurl
122 file inside the repository which contains one URL per line.
123 .It Ic show_repo_description Ar on | off
124 Toggle display of the repository description.
125 The
126 .Pa description
127 file in the repository should be updated with an appropriate description.
128 .It Ic show_repo_owner Ar on | off
129 Set whether to display the repository owner.
130 Displaying the owner requires owner information to be added to the
131 .Pa config
132 file in the repository.
133 .Xr gotwebd 8
134 will parse owner information from either a [gotweb] or a [gitweb] section.
135 For example:
136 .Bd -literal -offset indent
137 [gotweb]
138 owner = "Your Name"
139 .Ed
140 .It Ic site_link Ar string
141 Set the displayed site link name for the index page.
142 .It Ic site_name Ar string
143 Set the displayed site name title.
144 .It Ic site_owner Ar string
145 Set the displayed site owner.
146 .It Ic show_site_owner Ar on | off
147 Toggle display of the site owner.
148 .It Ic unix_socket Ar on | off
149 Enable or disable use of unix sockets.
150 .It Ic unix_socket_name Ar path
151 Set the path to the unix socket used by the server.
152 .El
153 .Sh EXAMPLES
154 These are the currently configurable items for
155 .Xr gotwebd 8
156 with their default values.
157 .Bd -literal -offset indent
159 # gotwebd options
160 # all paths relative to /var/www (httpd chroot jail)
163 prefork 1
165 server "localhost-unix" {
166 repos_path "/got/public"
167 unix_socket_name "/run/gotweb.sock"
169 got_site_name "my public repos"
170 got_site_owner "Got Owner"
171 got_site_link "repos"
173 logo "got.png"
174 logo_url "https://gameoftrees.org"
176 # on by default
177 #show_site_owner off
178 #show_repo_owner off
179 #show_repo_age false
180 #show_repo_description no
181 #show_repo_cloneurl off
183 #max_repos 100
184 #max_repos_display 25
185 #max_commits_display 50
188 # Example server context for FCGI over TCP connections:
189 #server "localhost-tcp" {
190 # repos_path "/got/public"
191 # unix_socket off
192 # listen on 127.0.0.1 port 9000
193 # listen on ::1 port 9000
194 #}
195 .Ed
196 .Sh FILES
197 .Bl -tag -width Ds -compact
198 .It Pa /etc/gotwebd.conf
199 Default location of the
200 .Nm
201 configuration file.
202 .El
203 .Sh SEE ALSO
204 .Xr got 1 ,
205 .Xr httpd.conf 5 ,
206 .Xr services 5 ,
207 .Xr gotwebd 8 ,
208 .Xr httpd 8