-
Notifications
You must be signed in to change notification settings - Fork 4
/
README
41 lines (29 loc) · 1017 Bytes
/
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
Nginx UUID filter
--
Description:
--
Issues identifying cookies. Based on ngx_http_userid_filter_module except that uses libuuid
to generate random uuids AND encodes the ids in 32-bit hex format as opposed to base64 encoded.
Installation:
--
You'll need to re-compile Nginx from source to include this module.
Modify your compile of Nginx by adding the following directive
(modified to suit your path of course):
./configure --add-module=/absolute/path/to/nginx-uuid-filter
make
make install
Usage:
--
Add to your Nginx config file's http block the following directives:
# Use UUID Module for cookie generation and tracking
uuid on;
uuid_name cookie_name;
uuid_domain .example.com;
uuid_path /;
uuid_expires max;
uuid_p3p 'CP="NOI CUR ADM OUR NOR STA NID"';
Contributing:
--
Git source repositories:
http://github.com/eliast/nginx-uuid-filter/tree/master
Please feel free to fork the project at GitHub and submit pull requests or patches.