An NGINX module that decrypts secure cookies in API calls from Single Page Applications.
This is the OAuth Proxy component of the Token Handler Pattern.
The OAuth proxy is a forwarder placed in front of your business APIs, to deal with cookie authorization.
A typical flow for an SPA calling an API would work like this:
- The SPA sends an AES256 encrypted HTTP Only cookie containing an opaque access token
- The OAuth Proxy module decrypts the cookie to get the opaque access token
- The opaque access token is then forwarded in the HTTP Authorization Header
- The Phantom Token Module then swaps the opaque token for a JWT access token
- The incoming HTTP Authorization Header is then updated with the JWT access token
- The API must then verify the JWT in a zero trust manner, on every request
All of the directives are required for locations where the module is enabled.
NGINX will fail to load if the configuration for any locations fail validation:
Syntax:
oauth_proxy
on
|off
Context:
location
The module is disabled by default but can be enabled for paths you choose.
Syntax:
oauth_proxy_cookie_name_prefix
string
Context:
location
The prefix used in the SPA's cookie name, typically representing a company or product name.
The value supplied must not be empty, and example
would lead to full cookie names such as example-at
.
Syntax:
oauth_proxy_encryption_key
string
Context:
location
This must be a 32 byte encryption key expressed as 64 hex characters.
It is used to decrypt AES256 encrypted secure cookies.
The key is initially generated with a tool such as openssl
, as explained in Curity tutorials.
Syntax:
oauth_proxy_trusted_web_origins
string[]
Context:
location
A whitelist of at least one web origin from which the module will accept requests.
Multiple origins could be used in special cases where cookies are shared across subdomains.
Syntax:
oauth_proxy_cors_enabled
boolean
Context:
location
When enabled, the OAuth proxy returns CORS response headers on behalf of the API.
When an origin header is received that is in the trusted_web_origins whitelist, response headers are written.
The access-control-allow-origin header is returned, so that the SPA can call the API.
The access-control-allow-credentials header is returned, so that the SPA can send secured cookies to the API.
Default values are provided for other CORS headers that the SPA needs.
Syntax:
oauth_proxy_allow_tokens
on
|off
Default: off
Context:
location
If set to true, then requests that already have a bearer token are passed straight through to APIs.
This can be useful when web and mobile clients share the same API routes.
Syntax:
oauth_proxy_cors_allow_methods
string
Default: 'OPTIONS,GET,HEAD,POST,PUT,PATCH,DELETE'
Context:
location
When CORS is enabled, these values are returned in the access-control-allow-methods response header.
A '*' wildcard value should not be configured here, since it will not work with credentialed requests.
Syntax:
oauth_proxy_cors_allow_headers
string
Default: ''
Context:
location
When CORS is enabled, the module returns these values in the access-control-allow-headers response header.
If no values are configured then at runtime any headers the SPA sends are allowed.
This is managed by returning the contents of the access-control-request-headers field.
If setting values explicitly, ensure that the token handler CSRF request header is included, eg x-example-csrf
.
A '*' wildcard value should not be configured here, since it will not work with credentialed requests.
Syntax:
oauth_proxy_cors_expose_headers
string
Default: ''
Context:
location
When CORS is enabled, the module returns these values in the access-contol-expose-headers response header.
A '*' wildcard value should not be configured here, since it will not work with credentialed requests.
Syntax:
oauth_proxy_cors_max_age
number
Default: 86400
Context:
location
When CORS is enabled, the module returns this value in the access-contol-max-age response header.
This option prevents excessive pre-flight OPTIONS requests, to improve the efficiency of API calls.
In deployed systems the module is loaded using the load_module directive.
This needs to be done in the main part of the NGINX configuration:
load_module modules/ngx_curity_http_oauth_proxy_module.so;
The following location decrypts cookies, then forwards an access token to the downstream API:
location /products {
oauth_proxy on;
oauth_proxy_cookie_name_prefix "example";
oauth_proxy_encryption_key "4e4636356d65563e4c73233847503e3b21436e6f7629724950526f4b5e2e4e50";
oauth_proxy_trusted_web_origin "https://www.example.com";
oauth_proxy_cors_enabled on;
proxy_pass "https://productsapi.example.com";
}
Parent and child locations can be used, in which case children inherit the parent settings:
location /api {
oauth_proxy on;
oauth_proxy_cookie_name_prefix "example";
oauth_proxy_encryption_key "4e4636356d65563e4c73233847503e3b21436e6f7629724950526f4b5e2e4e50";
oauth_proxy_trusted_web_origin "https://www.example.com";
oauth_proxy_cors_enabled on;
location /api/products {
proxy_pass "https://productsapi.example.com";
}
location /api/offers {
proxy_pass "https://offersapi.example.com";
}
}
The module expects to receives two cookies, which use a custom prefix with fixed suffixes.
Cookies are encrypted using AES256-GCM, and received in a base64 URL encoded format.
Example Cookie Name | Fixed Suffix | Contains |
---|---|---|
example-at | -at | An encrypted cookie containing an opaque or JWT access token |
example-csrf | -csrf | A CSRF cookie verified during data changing requests |
The module handles cookies according to OWASP Cross Site Request Forgery Best Practices:
The module first handles pre-flight OPTIONS requests and writes CORS response headers:
access-control-allow-origin: https://www.example.com
access-control-allow-credentials: true
access-control-allow-cors_allow_methods: OPTIONS,GET,HEAD,POST,PUT,PATCH,DELETE
access-control-allow-cors_allow_headers: x-example-csrf
access-control-max-age: 86400
vary: origin,access-control-request-headers
On the main request the module first reads the Origin HTTP Header
, sent by all modern browsers.
If this does not contain a trusted value the request is immediately rejected with a 401 response.
The process is as follows, though the exact identifiers depend on the configured cookie prefix:
- After a user login the browser receives an
example-csrf
cookie from the main Token Handler API. - When the SPA loads it receives a
csrf-token
, which stays the same for the authenticated session. - This is sent as an
x-example-csrf
request header on POST, PUT, PATCH, DELETE commands. - The cookie and header value must have the same value or the module returns a 401 error response.
Once other checks have completed, the module processes the access token cookie.
The -at
cookie is decrypted, after which the token is forwarded to the downstream API:
Authorization Bearer 42665300-efe8-419d-be52-07b53e208f46
With opaque reference tokens the encrypted cookies do not exceed NGINX default header sizes.
If large JWTs are instead used, then these NGINX properties may need to use larger than default values:
- proxy_buffers
- proxy_buffer_size
- large_client_header_buffers
AES256-GCM uses authenticated encryption, so invalid cookies are rejected with a 401 response:
- Cookies encrypted with a different encryption key
- Cookies where any part of the payload has been tampered with
Error responses contain a JSON body and CORS headers so that the SPA can read the details:
{
"code": "unauthorized",
"message": "Access denied due to missing or invalid credentials"
}
access-control-allow-origin: https://www.example.com
access-control-allow-credentials: true
The code in the Example SPA shows how to handle error responses.
The HTTP status code is usually sufficient, and the error code can inform the SPA of specific causes.
This module has been tested for the Linux NGINX distributions from the Deployment Resources.
It requires the NGINX HTTP SSL module to be enabled, so that OpenSSL libraries are available.
Pre-built binaries of this module are provided for the following versions of NGINX.
Download the .so file for your platform and deploy it to the /usr/lib/nginx/modules
folder of your NGINX servers.
NGINX 1.25.5 / NGINX Plus R32 | NGINX 1.25.3 / NGINX Plus R31 | NGINX 1.25.1 / NGINX Plus R30 | NGINX 1.23.4 / NGINX Plus R29 | NGINX 1.23.2 / NGINX Plus R28 | |
---|---|---|---|---|---|
Alpine | ⇓ | ⇓ | ⇓ | ⇓ | ⇓ |
Debian 11.0 (Bullseye) | ⇓ | ⇓ | ⇓ | ⇓ | ⇓ |
Debian 12.0 (Bookworm) | ⇓ | ⇓ | ⇓ | X | X |
Ubuntu 20.04 LTS (Focal Fossa) | ⇓ | ⇓ | ⇓ | ⇓ | ⇓ |
Ubuntu 22.04 LTS (Jammy Jellyfish) | ⇓ | ⇓ | ⇓ | ⇓ | ⇓ |
Ubuntu 24.04 LTS (Noble Numbat) | ⇓ | X | X | X | X |
Amazon Linux 2 | ⇓ | ⇓ | ⇓ | ⇓ | ⇓ |
Amazon Linux 2023 | ⇓ | ⇓ | ⇓ | ⇓ | ⇓ |
CentOS Stream 9.0+ | ⇓ | ⇓ | ⇓ | ⇓ | ⇓ |
If you wish to customize this module by building from source, see the Development Wiki for instructions.
This software is copyright (C) 2022 Curity AB. It is open source software that is licensed under the Apache 2 license. For commercial support of this module, please contact Curity sales.
Please visit curity.io for more information about the Curity Identity Server.