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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
|
.\"
.\" Copyright (c) 2004, Stefan Walter
.\" All rights reserved.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\"
.\" * Redistributions of source code must retain the above
.\" copyright notice, this list of conditions and the
.\" following disclaimer.
.\" * Redistributions in binary form must reproduce the
.\" above copyright notice, this list of conditions and
.\" the following disclaimer in the documentation and/or
.\" other materials provided with the distribution.
.\" * The names of contributors to this software may not be
.\" used to endorse or promote products derived from this
.\" software without specific prior written permission.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
.\" "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
.\" LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
.\" FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
.\" COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
.\" BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
.\" OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
.\" AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
.\" OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
.\" THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
.\" DAMAGE.
.\"
.\"
.\" CONTRIBUTORS
.\" Stef Walter <stef@memberwebs.com>
.\"
.Dd April, 2004
.Dt httpauthd.conf 5
.Os httpauth
.Sh NAME
.Nm httpauthd.conf
.Nd the configuration file for
.Xr httpauthd 8
.Sh DESCRIPTION
.Xr httpauthd 8
reads it's configuration from this file when starting up. It contains global
settings followed by the various authentication methods and their settings.
.Sh SYNTAX
The settings are specified one per line. The setting name comes first
followed by a colon, and the value for that setting. Authentication method
sections are prefixed with a '[method]' on a line of it's own.
.Pp
Lines beginning with a # mark are comments. An example:
.Bd -literal -offset indent
# Sample Configuration File
Socket: 0.0.0.0:8020
AuthTypes: Basic Digest
[Simple]
Alias: MyAuth
PasswordFile: /srv/passwd.file
.Ed
.Sh AUTHENTICATION METHODS
Methods are the various ways
.Xr httpauthd
can authenticate a user. A method will use either LDAP, a file or some
other means to determine if a user is valid. The methods currently
implemented are:
.Bl -hang
.It LDAP
Authenticate against an LDAP server.
.It NTLM
Authenticate via NTLM against a Windows Server.
.It MYSQL
Authenticate against a MYSQL database
.It PGSQL
Authenticate against a PostgreSQL database.
.It Simple
Authenticate against a password file. For info on creating this file see
.Xr mkha1 8
.El
.Pp
A method block in the configuration file needs to contain one of the
above method names as the header for it's section (ie: [LDAP]). It
can be given another name by specifying an alias for it.
.Pp
This allows for the creation of various configurations with purpose
specific names. These names are used by callers of
.Xr httpauthd 8
to identify how to authenticate a given HTTP connection.
.Pp
Aliases are created by putting a colon and a name after the section type,
like this:
.Bd -literal -offset indent
[Simple:MyName]
.Ed
.Sh GLOBAL OPTIONS
These options affect httpauthd as a whole. They should be placed before the
beginning of the first authentication method section. In addition certain
options can be placed in this section which affect all the authentication
methods. These are outlined under the
.Em METHOD OPTIONS
heading further below.
.Bl -hang
.It Cd Socket
This is where httpauthd listens for connections. It can either be a unix
type socket by specifying a file path (eg: /var/run/ha.sock), a port number
(eg: 8030) or a IP address with optional port number (eg: 192.168.2.38:8200).
If you specify an IP address without a port,
.Em 8020
will be used.
.Pp
[ Default:
.Em /var/run/httpauthd.sock
]
.It Cd MaxThreads
This equals the amount of authentication connections that
.Xr httpauthd 8
will be able to have open at once.
.Pp
[ Default:
.Em 32
]
.El
.Sh METHOD OPTIONS
These options change settings in how the various methods handle authentication.
When they appear after a method section, they only affect that method. Most of
them can also appear in the inital section of the configuration file in which
case they're used as defaults.
.Bl -hang
.It Cd AuthTypes
The allowed HTTP authentication types, separated by spaces. Any combination of:
.Ar Basic Digest NTLM
.Pp
[ Default:
.Ar Basic Digest NTLM
]
.It Cd CacheMax
The maximum amount of successful authentication requests a method can cache.
.Pp
[ Default:
.Em 1024
]
.It Cd CacheTimeout
The length of time in seconds that a successful authentication remains cached.
How this exactly works depends on the method it applies to.
.Pp
[ Default:
.Em 900
]
.It Cd DigestIgnoreNC
When set to
.Em True
allows the NC value in
.Em Digest
authentication to be incorrect. This opens up various replay attacks.
.Pp
[ Default:
.Em False
]
.It Cd DigestIgnoreURI
When set to
.Em True
allows the URI value in
.Em Digest
authentication to be mismatched with the URI requested. This opens up
a variety of replay attacks, but may be necessary in some cases.
.Pp
[ Default:
.Em False
]
.It Cd Realm
The realm used in
.Em Basic
and
.Em Digest
authentication.
.Pp
[ Default:
.Em (none)
]
.El
.Sh SIMPLE METHOD OPTIONS
These are settings for the
.Em Simple
authentication method. This method authenticates against password hashes in a file.
.Bl -hang
.It Cd PasswordFile
The path of the file that contains the password hashes. This file can be in either
the format created by
.Xr htpasswd 1
or
.Xr htdigest 1
(tools that come with apache). You can also use the
.Xr mkha1 8
tool that comes with httpauth.
.Pp
[ Required ]
.El
.Sh LDAP METHOD OPTIONS
Settings for the
.Em LDAP
authentication method. This method authenticates users against an LDAP server.
.Bl -hang
.It Cd LDAPBase
The base DN to use in the search for a user. This only applies when no
LDAPDNMap is specified.
.Pp
[ Required when
.Em LDAPDNMap
is missing ]
.It Cd LDAPDNMap
Specifies the DN for a user name. The
.Em %u
and
.Em %r
flags can be used in the DN, which will substitute the user and realm
respectively.
.Pp
[ Optional ]
.It Cd LDAPDoBind
When performing Basic authentication,
.Xr httpauthd
can try to bind to the LDAP server as the user in question. This
allows authentication even when no access to cleartext passwords
is available. Note that this does not apply to Digest authentication.
.Pp
[ Default:
.Em True
]
.It Cd LDAPFilter
The LDAP filter to use when querying the server. The
.Em %u
and
.Em %r
flags can be used in the filter, which will substitute the user and realm
respectively. When used without a
.Em LDAPDNMap
then this is used to identify the LDAP entry for the user. In this case care
should be taken that the filter only returns one record.
.Pp
[ Required when
.Em LDAPDNMap
is missing ]
.It Cd LDAPHA1Attr
A HA1 is a special kind of digest containing the user name, realm and
password. This can be used in place of cleartext passwords when doing
Digest authentication. This setting specifies the attribute on the
LDAP server that the hash can be found in. Use the
.Xr mkha1 8
tool for creating HA1 hashes.
.Pp
.Xr httpauthd 8
can perform both Basic and Digest authentication against this attribute.
Note that the realm however is stored in the hash and must match the
realm being sent to the client in the
.Em Realm
setting.
.Pp
[ Optional ]
.It Cd LDAPMax
The maximum amount of connections to make to the LDAP server.
.Pp
[ Default:
.Em 10
]
.It Cd LDAPPasswsord
The password to use with
.Em LDAPUser
.Pp
[ Optional ]
.It Cd LDAPPwAttr
The name of the attribute on the LDAP server that contains the user's
password. This can be for Basic authentication (when
.Em LDAPDoBind
is off) or Digest authentication. When used with Digest Auth (and no
.Em LDAPHA1Attr
is specified) it needs to contain a cleartext password.
.Pp
[ Default:
.Em userPassword
]
.It Cd LDAPScope
When searching the LDAP for a user (ie:
.Em LDAPDNMap
is not specified) this is the scope for the search. Specify one of the
following:
.Ar sub base one
.Pp
[ Default:
.Em sub
]
.It Cd LDAPServers
The host names or IP addresses of the LDAP servers to authenticate against.
Separated by spaces. More than one can be specified for failover capability.
.Pp
[ Required ]
.It Cd LDAPTimeout
The timeout for searches on the LDAP server (in seconds).
.Pp
[ Default:
.Em 30
]
.It Cd LDAPUser
When specified
.Xr httpauthd
will bind as this user after connecting to the LDAP server. This is useful
in the case where anonymous users can't perform LDAP searches, for example.
.Pp
[ Optional ]
.El
.Sh NTLM METHOD OPTIONS
Settings for the
.Em NTLM
authentication method. This method authenticates users against NT domain
server.
.Bl -hang
.It Cd NTLMBackup
The backup domain server to authenticate against. Used when
.Em NTLMServer
is not available.
.Pp
[ Optional ]
.It Cd NTLMDomain
The domain which contains the users that will be authenticated. This is
the NT domain, not the DNS domain.
.Pp
[ Required ]
.It Cd NTLMServer
The domain server to authenticate against. You should specify a name here
not an IP address.
.Pp
[ Required ]
.It Cd PendingMax
The maximum amount of halfway authenticated NTLM connections allowed.
This corresponds directly to the amount of concurrent connections made to
.Em NTLMServer
.Pp
[ Default:
.Em 16
]
.It Cd PendingTimeout
The maximum time a halfway authenticated NTLM connection is allowed to
remain that way (in seconds).
.Pp
[ Default:
.Em 20
]
.El
.Sh MYSQL AND PGSQL METHOD OPTIONS
Here are the options for the MYSQL and PGSQL handlers.
.Bl -hang
.It Cd DBDatabase
The database on the DB server to connect to.
.Pp
[ Required ]
.It Cd DBHA1Column
The name of the column in
.Ar DBQuery
that contains the HA1 for the user. A HA1
is a special kind of digest containing the user name, realm and password.
This can be used in place of cleartext passwords when doing Digest
authentication. Use the
.Xr mkha1 8
tool for creating HA1 hashes.
.Pp
[ Optional ]
.It Cd DBMax
The maximum number of connections to make to the database server.
.Pp
[ Default:
.Em 10
]
.It Cd DBPassword
The password for the
.Ar DBUser
option.
.Pp
[ Optional ]
.It Cd DBPort
When connecting to the server via TCP this option specifies the port
to connect on.
.Pp
[ Default: DB server's default port ]
.It Cd DBPWColumn
The name of the column in
.Ar DBQuery
that contains the password.
.Pp
[ Default: First Column ]
.It Cd DBPWType
The type of password stored in the database. The options are:
.Ar clear crypt md5 sha1
.Pp
[ Default:
.Em clear
]
.It Cd DBQuery
The query to execute when authenticating a user. The
.Em %u
and
.Em %r
flags can be used in the query, which will substitute the user and realm
respectively. This should be a 'SELECT' type query or a query that returns
data.
.Pp
[ Required ]
.It Cd DBServer
The address to connect to the database at. It can either be a IP address,
host name, or unix type socket. If this option is not specified then the
default connection (see MYSQL or PGSQL docs) will be used.
.Pp
[ Optional ]
.It Cd DBTimeout
Time in seconds to wait for a connection to the DB server.
.Pp
[ Default:
.Em 30
]
.It Cd DBUser
The user to connect to the database as.
.Pp
[ Default: DB's default user ]
.El
.Sh SEE ALSO
.Xr httpauthd 8
.Sh AUTHOR
.An Stef Walter Aq stef@memberwebs.com
|