forked from stnoonan/spnego-http-auth-nginx-module
-
Notifications
You must be signed in to change notification settings - Fork 3
/
README
75 lines (50 loc) · 2.03 KB
/
README
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
Nginx module to use SPNEGO+GSSAPI+Kerberos for HTTP authentication
==================================================================
Foreword From Mike
------------------
Michael Shadle paid YoctoPetaBorg from RentACoder to develop this extension.
YPB's notes are what make up the rest of this document.
I (Michael Shadle) have tried to string replace and rename this to be called
"ngx_http_auth_spnego_module" instead of the previous "ngx_http_auth_sso_module" name.
There may be some oddities due to this. Hopefully not.
Whatsizit
---------
Code 97% stolen from mod_auth_gss_krb5 (http://modgssapache.sf.net);
version 0.0.5.
Compilation
-----------
First you need to compile the spnegohelp dynamic library. 'make' in that
subdirectory should do it, then place it by hand somewhere where linker
and loader can find it by default (probably /usr/lib or perhaps even
/usr/local/lib depending on your setup).
When compiling from source build as usual adding the --add-module option:
./configure --add-module=$PATH_TO_MODULE
inside top Nginx source directory.
Configuration
-------------
The module has following directives:
- auth_gss: "on"/"off", for ease of unsecuring while leaving other
options in the config file,
- auth_gss_realm: what Kerberos realm name to use, for now only used to
remove it from full [email protected],
- auth_gss_keytab: absolute path-name to keytab file containing service
credentials,
- auth_gss_service_name: what service name to use when acquiring
credentials. (TOFIX: HTTP but should be a list in case of some other
browsers wanting perhaps khttp or http)
TOFIX: for now they are all merely location specific. i.e. no way to
specify main or per server defaults, except for ...
Examples
--------
... current "hardcodeds" ;-}
location /topsecret {
auth_gss on;
auth_gss_realm LOCALDOMAIN;
auth_gss_keytab /etc/krb5.keytab;
auth_gss_service_name HTTP;
}
Additional steps...
-------------------
pray for no segfaults...
TOFIX: perhaps add instructions on how to create the service keytab...