We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e01b36 commit 060185dCopy full SHA for 060185d
src/ngx_http_auth_jwt_module.c
@@ -85,10 +85,11 @@ ngx_module_t ngx_http_auth_jwt_module = {
85
86
static ngx_int_t ngx_http_auth_jwt_handler(ngx_http_request_t *r)
87
{
88
- static const ngx_str_t jwtCookieName = ngx_string("rampartjwt");
89
- static const ngx_str_t passportKeyCookieName = ngx_string("PassportKey");
90
- static const ngx_str_t authorizationHeaderName = ngx_string("Authorization");
91
static const int BEARER_LEN = 7; // strlen("Bearer ");
+
+ ngx_str_t jwtCookieName = ngx_string("rampartjwt");
+ ngx_str_t passportKeyCookieName = ngx_string("PassportKey");
92
+ ngx_str_t authorizationHeaderName = ngx_string("Authorization");
93
ngx_int_t n;
94
ngx_str_t jwtCookieVal;
95
char* jwtCookieValChrPtr;
0 commit comments