File tree Expand file tree Collapse file tree 5 files changed +9
-5
lines changed
Expand file tree Collapse file tree 5 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
66and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
77
8+ ## [ 6.0.2] - 2019-01-06
9+ ### Fixed
10+ - PXHD cookie path
11+
812## [ 6.0.1] - 2019-01-04
913### Fixed
1014- Mobile detection for captcha script
Original file line number Diff line number Diff line change 44
55# [ PerimeterX] ( http://www.perimeterx.com ) NGINX Lua Plugin
66
7- > Latest stable version: [ v6.0.1 ] ( https://luarocks.org/modules/bendpx/perimeterx-nginx-plugin/6.0-1 )
7+ > Latest stable version: [ v6.0.2 ] ( https://luarocks.org/modules/bendpx/perimeterx-nginx-plugin/6.0-2 )
88
99
1010## [ Introduction] ( #introduction )
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ function M.application(px_configuration_table)
8888 -- handle pxhd cookie
8989 if ngx .ctx .pxhd ~= nil then
9090 ngx .header [" Content-Type" ] = nil
91- ngx .header [" Set-Cookie" ] = " _pxhd=" .. ngx .ctx .pxhd .. " ; Expires=" .. ngx .cookie_time (ngx .time () + cookie_expires )
91+ ngx .header [" Set-Cookie" ] = " _pxhd=" .. ngx .ctx .pxhd .. " ; Expires=" .. ngx .cookie_time (ngx .time () + cookie_expires ) .. " ; Path=/ "
9292 end
9393
9494 -- case score crossed threshold
Original file line number Diff line number Diff line change 33---- ------------------------------------------
44
55local _M = {
6- MODULE_VERSION = " NGINX Module v6.0.1 " ,
6+ MODULE_VERSION = " NGINX Module v6.0.2 " ,
77 RISK_PATH = " /api/v3/risk" ,
88 CAPTCHA_PATH = " /api/v2/risk/captcha" ,
99 ACTIVITIES_PATH = " /api/v1/collector/s2s" ,
Original file line number Diff line number Diff line change 11 package = " perimeterx-nginx-plugin"
2- version = " 6.0-1 "
2+ version = " 6.0-2 "
33 source = {
44 url = " git://github.com/PerimeterX/perimeterx-nginx-plugin.git" ,
5- tag = " v6.0.1 " ,
5+ tag = " v6.0.2 " ,
66 }
77 description = {
88 summary = " PerimeterX NGINX Lua Middleware." ,
You can’t perform that action at this time.
0 commit comments