Policy type reference

This reference describes the fields and merging behavior for each Policy type.

AccessControl

The access control policy configures NGINX to deny or allow requests from clients with the specified IP addresses or subnets.

For example, the following policy allows access for clients from the subnet 10.0.0.0/8 and denies access for any other clients:

yaml
accessControl:
  allow:
  - 10.0.0.0/8

In contrast, the following policy does the opposite. It denies access for clients from 10.0.0.0/8 and allows access for any other clients:

yaml
accessControl:
  deny:
  - 10.0.0.0/8
This feature uses the NGINX ngx_http_access_module. The NGINX Ingress Controller access control policy supports either allow rules or deny rules, but not both, unlike the module itself.
Field Description Type Required
allow Allows access for the specified networks or addresses. For example, 192.168.1.1 or 10.1.1.0/16. []string No
deny Denies access for the specified networks or addresses. For example, 192.168.1.1 or 10.1.1.0/16. []string No

AccessControl merging behavior

A VirtualServer or VirtualServerRoute can reference multiple access control policies. For example, this configuration references two policies, each with a configured allow list:

yaml
policies:
- name: allow-policy-one
- name: allow-policy-two

When a resource references more than one access control policy, NGINX Ingress Controller merges the contents into a single allow list or a single deny list.

NGINX Ingress Controller doesn’t support referencing both allow and deny policies together, as shown in the following example. If a resource references both allow and deny lists, NGINX Ingress Controller uses only the allow list policies.

yaml
policies:
- name: deny-policy
- name: allow-policy-one
- name: allow-policy-two

RateLimit

The rate limit policy configures NGINX to limit the processing rate of requests.

For example, the following policy limits all subsequent requests from a single IP address once the rate exceeds 10 requests per second:

yaml
rateLimit:
  rate: 10r/s
  zoneSize: 10M
  key: ${binary_remote_addr}
This feature uses the NGINX ngx_http_limit_req_module.
When you turn on the zone sync feature with NGINX Plus, NGINX Ingress Controller synchronizes the rate limiting zone across all replicas in the cluster. This means all replicas know about requests that other replicas in the cluster have already rate limited.
Field Description Type Required
rate The rate of requests permitted. The rate is specified in requests per second (r/s) or requests per minute (r/m). string Yes
key The key to which the rate limit is applied. Can contain text, variables, or a combination of them. Variables must be surrounded by ${}. For example: ${binary_remote_addr}. Accepted variables are $binary_remote_addr, $request_uri,$request_method, $url, $http_, $args, $arg_, $cookie_, $jwt_claim_. string Yes
zoneSize Size of the shared memory zone. Only positive values are allowed. Allowed suffixes are k or m, if none are present k is assumed. string Yes
delay The delay parameter specifies a limit at which excessive requests become delayed. If not set all excessive requests are delayed. int No
noDelay Disables the delaying of excessive requests while requests are being limited. Overrides delay if both are set. bool No
burst Excessive requests are delayed until their number exceeds the burst size, in which case the request is terminated with an error. int No
dryRun Turns on dry run mode. In this mode, NGINX Ingress Controller doesn’t apply the rate limit, but it accounts for the number of excessive requests as usual in the shared memory zone. bool No
logLevel Sets the desired logging level for cases when the server refuses to process requests due to rate exceeding, or delays request processing. Allowed values are info, notice, warn or error. Default is error. string No
rejectCode Sets the status code to return in response to rejected requests. Must fall into the range 400..599. Default is 503. int No
scale Keeps the rate limit constant by dividing the configured rate by the number of NGINX Ingress Controller pods currently serving traffic. This adjustment keeps the rate limit consistent, even as the number of pods fluctuates due to autoscaling. This doesn’t work correctly if requests from a client aren’t distributed evenly across all Ingress Controller pods (for example, with sticky sessions or long-lived TCP connections with many requests). In these cases, zone sync gives better results. Turning on zone-sync suppresses this setting. bool No
condition Add a condition to a rate-limit policy. ratelimit.condition No
For each policy referenced in a VirtualServer or its VirtualServerRoutes, NGINX Ingress Controller generates a single rate limiting zone defined by the limit_req_zone directive. If two VirtualServer resources reference the same policy, NGINX Ingress Controller generates two different rate limiting zones, one zone per VirtualServer.

RateLimit merging behavior

A VirtualServer or VirtualServerRoute can reference multiple rate limit policies. For example, this configuration references two policies:

yaml
policies:
- name: rate-limit-policy-one
- name: rate-limit-policy-two

When a resource references more than one rate limit policy, NGINX Ingress Controller configures NGINX to use all referenced rate limits. When you define multiple policies, each additional policy inherits the dryRun, logLevel, and rejectCode parameters from the first policy referenced (rate-limit-policy-one, in the example above).

RateLimit.Condition

RateLimit.Condition defines a condition for a rate limit policy. For example:

yaml
condition:
  jwt:
    claim: user_details.level
    match: premium
  default: true
Field Description Type Required
jwt defines a JWT condition to rate limit against. ratelimit.condition.jwt No
variables defines a Variable condition to rate limit against. ratelimit.condition.variables No
default sets the rate limit in this policy to be the default if no conditions are met. In a group of policies with the same condition, only one policy can be the default. bool No
Conditions (jwt or variables) are optional, but each policy can only have one. If conditions are used and a request doesn’t match any of them, NGINX Ingress Controller applies the default policy, if one is defined. Otherwise, if no default is set, the request isn’t rate limited.

Combine the rate limit policy with condition with one or more rate limit policies. For example, you can combine multiple rate limit policies that use RateLimit.Condition.JWT to apply different tiers of rate limit based on the value of a JWT claim. For a practical example of tiered rate limiting by the value of a JWT claim, see the example in the GitHub repository.

RateLimit.Condition.JWT

This feature is only available with NGINX Plus.

RateLimit.Condition.JWT defines a condition for a rate limit by JWT claim. For example, the following condition applies a rate limit policy only to requests with a JWT claim user_details.level with a value premium:

yaml
jwt:
  claim: user_details.level
  match: premium

The rate limit policy applies only to requests that contain a JWT with the specified claim and value. For example, the following JWT payload matches the JWT condition:

json
{
  "user_details": {
    "level": "premium"
  },
  "sub": "client1"
}
Field Description Type Required
claim Claim is the JWT claim on which to apply the rate limit. Nested claims should be separated by ".". string Yes
match the value of the claim to match against. string Yes

RateLimit.Condition.Variables

RateLimit.Condition.Variables defines a condition for a rate limit by NGINX variable. The following example defines a condition for a rate limit policy that applies only to requests with the request method with a value GET:

yaml
variables:
  - name: $request_method
    match: GET
NGINX Ingress Controller currently supports only one variable at a time.
Field Description Type Required
name the name of the NGINX variable on which to apply the rate limit. string Yes
match the value of the NGINX variable to match against. Values prefixed with the ~ character denote the following is a regular expression. string Yes

APIKey

The API Key auth policy configures NGINX to authorize client requests based on the presence of a valid API Key in a header or query parameter specified in the policy.

This feature uses the NGINX ngx_http_auth_request_module and NGINX JavaScript (NJS).

Subrequests may not function as expected and may cause issues when the APIKey policy and a WAF policy are applied together on the same route.

The policy stores API keys securely using SHA-256 hashing. When a client sends an API Key, NJS hashes it and compares it to the hashed API Key in the NGINX configuration.

If the hashed keys match, the NJS subrequest issues a 204 No Content response to the auth_request directive, indicating successful authorization. If the client doesn’t provide an API Key in the specified header or query parameter, NGINX returns a 401 Unauthorized response. If the client presents an invalid key in the expected header or query parameter, NGINX returns a 403 Forbidden response and denies access.

You can use the errorPages property on a route to change the default behavior for 401 or 403 errors.

The policy requires at least one header or query parameter.

The policy below configures NGINX Ingress Controller to require the API Key password in the header "my-header".

yaml
apiKey:
    suppliedIn:
      header:
      - "my-header"
    clientSecret: api-key-secret
yaml
apiVersion: v1
kind: Secret
metadata:
  name: api-key-secret
type: nginx.org/apikey
data:
    client1: cGFzc3dvcmQ= # password
Field Description Type Required
suppliedIn header or query. Yes
suppliedIn.header An array of headers that the API Key may appear in. string[] No
suppliedIn.query An array of query params that the API Key may appear in. string[] No
clientSecret The name of the Kubernetes secret that stores the API Key(s). It must be in the same namespace as the Policy resource. The secret must be of the type nginx.org/apikey, and the API Key(s) must be stored in a key: val format where each key is a unique clientID and each value is a unique base64 encoded API Key string Yes
Important
An APIKey policy must include at least one of the suppliedIn.header or suppliedIn.query parameters. You can also include both.

APIKey merging behavior

A VirtualServer or VirtualServerRoute can be associated with only one API Key policy per route or subroute. You can replace an API Key policy from a higher level with a different policy defined on a more specific route.

For example, a VirtualServer can implement different API Key policies at various levels. In the following configuration, the server-wide api-key-policy-server applies to /backend1 for authorization, because that route has no more specific policy. /backend2 uses api-key-policy-route, defined at the route level.

yaml
apiVersion: k8s.nginx.org/v1
kind: VirtualServer
metadata:
  name: virtual-server
spec:
  host: virtual-server.example.com
  policies:
  - name: api-key-policy-server
  upstreams:
  - name: backend2
    service: backend2-svc
    port: 80
  - name: backend1
    service: backend1-svc
    port: 80
  routes:
  - path: /backend1
    action:
      pass: backend1
  - path: /backend2
    action:
      pass: backend2
    policies:
      - name: api-key-policy-route

BasicAuth

The basic auth policy configures NGINX to authenticate client requests using the HTTP Basic authentication scheme.

For example, the following policy rejects all requests that don’t include a valid username and password combination in the HTTP header Authentication:

yaml
basicAuth:
  secret: htpasswd-secret
  realm: "My API"
This feature uses the NGINX ngx_http_auth_basic_module.
Field Description Type Required
secret The name of the Kubernetes secret that stores the Htpasswd configuration. It must be in the same namespace as the Policy resource. The secret must be of the type nginx.org/htpasswd, and the config must be stored in the secret under the key htpasswd. Otherwise, NGINX Ingress Controller rejects the secret as invalid. string Yes
realm The realm for the basic authentication. string No

BasicAuth merging behavior

A VirtualServer or VirtualServerRoute can reference multiple basic auth policies, but NGINX Ingress Controller applies only the first one. It ignores every subsequent reference. For example, this configuration references two policies:

yaml
policies:
- name: basic-auth-policy-one
- name: basic-auth-policy-two

In this example, NGINX Ingress Controller uses the configuration from the first policy reference, basic-auth-policy-one, and ignores basic-auth-policy-two.

JWT using a local Kubernetes secret

This feature is only available with NGINX Plus.

The JWT policy configures NGINX Plus to authenticate client requests using JSON Web Tokens.

The following example policy rejects all requests that don’t include a valid JWT in the HTTP header token:

yaml
jwt:
  secret: jwk-secret
  realm: "My API"
  token: $http_token

You can pass the JWT claims and JOSE headers to the upstream servers. For example:

yaml
action:
  proxy:
    upstream: webapp
    requestHeaders:
      set:
      - name: user
        value: ${jwt_claim_user}
      - name: alg
        value: ${jwt_header_alg}

This example uses the requestHeaders of Action.Proxy to set the values of two headers that NGINX passes to the upstream servers.

The value of the ${jwt_claim_user} variable is the user claim of a JWT. For other claims, use ${jwt_claim_name}, where name is the name of the claim. Nested claims and claims that include a period (.) aren’t supported. Similarly, use ${jwt_header_name}, where name is the name of a header. This example uses the alg header.

This feature uses the NGINX Plus ngx_http_auth_jwt_module.
Field Description Type Required
secret The name of the Kubernetes secret that stores the JWK. It must be in the same namespace as the Policy resource. The secret must be of the type nginx.org/jwk, and the JWK must be stored in the secret under the key jwk. Otherwise, NGINX Ingress Controller rejects the secret as invalid. string Yes
realm The realm of the JWT. string Yes
token The token specifies a variable that contains the JSON Web Token. By default the JWT is passed in the Authorization header as a Bearer Token. JWT may be also passed as a cookie or a part of a query string, for example: $cookie_auth_token. Accepted variables are $http_, $arg_, $cookie_. string No

JWT merging behavior

A VirtualServer or VirtualServerRoute can reference multiple JWT policies, but NGINX Ingress Controller applies only the first one. It ignores every subsequent reference. For example, this configuration references two policies:

yaml
policies:
- name: jwt-policy-one
- name: jwt-policy-two

In this example, NGINX Ingress Controller uses the configuration from the first policy reference, jwt-policy-one, and ignores jwt-policy-two.

JWT using JWKS from a remote location

This feature is only available with NGINX Plus.

The JWT policy configures NGINX Plus to authenticate client requests using JSON Web Tokens. You can import the JWKS keys for a JWT policy from a URL, such as a remote server or an identity provider, so you don’t have to copy and update them on the Ingress Controller pod.

The following example policy rejects all requests that don’t include a valid JWT in the HTTP header fetched from the identity provider:

yaml
jwt:
  realm: MyProductAPI
  token: $http_token
  jwksURI: <uri_to_remote_server_or_idp>
  keyCache: 1h

This feature uses the NGINX Plus directive auth_jwt_key_request, part of ngx_http_auth_jwt_module.

Subrequests may not function as expected and may cause issues when fetching JWKs from a remote URI (jwksURI) in a JWT policy and a WAF policy are applied together on the same route.

Field Description Type Required Default
jwksURI The remote URI where NGINX Ingress Controller sends the request to retrieve the JSON Web Key set. string Yes
keyCache Turns on in-memory caching of JWKS (JSON Web Key Sets) obtained from the jwksURI and sets a valid time for expiration. string Yes
realm The realm of the JWT. string Yes
token The token specifies a variable that contains the JSON Web Token. By default the JWT is passed in the Authorization header as a Bearer Token. JWT may be also passed as a cookie or a part of a query string, for example: $cookie_auth_token. Accepted variables are $http_, $arg_, $cookie_. string No
sniEnabled Turns on SNI (Server Name Indication) for the JWT policy. Use this when the remote server requires SNI to serve the correct certificate. bool No false
sniName The SNI name to use when connecting to the remote server. If not set, NGINX Ingress Controller uses the hostname from the jwksURI. string No
sslVerify Turns on verification of the JWKS server SSL certificate. bool No false
sslVerifyDepth Sets the verification depth in the JWKS server certificates chain. int No 1
trustedCertSecret The name of the Kubernetes secret that stores the CA certificate for JWKS server verification. It must be in the same namespace as the Policy resource. The secret must be of the type nginx.org/ca, and the certificate must be stored in the secret under the key ca.crt. string No
NGINX Ingress Controller turns on content caching by default for each JWT policy, with a default time of 12 hours. This improves resiliency by letting NGINX Ingress Controller retrieve the JWKS (JSON Web Key Set) from the cache even after it expires.

JWT using JWKS merging behavior

This behavior is similar to using a local Kubernetes secret. A VirtualServer or VirtualServerRoute can reference multiple JWT policies, but NGINX Ingress Controller applies only the first one. It ignores every subsequent reference. For example, this configuration references two policies:

yaml
policies:
- name: jwt-policy-one
- name: jwt-policy-two

In this example, NGINX Ingress Controller uses the configuration from the first policy reference, jwt-policy-one, and ignores jwt-policy-two.

IngressMTLS

The IngressMTLS policy configures client certificate verification.

For example, the following policy verifies a client certificate using the CA certificate specified in ingress-mtls-secret:

yaml
ingressMTLS:
  clientCertSecret: ingress-mtls-secret
  verifyClient: "on"
  verifyDepth: 1

Below is an example of ingress-mtls-secret using the secret type nginx.org/ca:

yaml
kind: Secret
metadata:
  name: ingress-mtls-secret
apiVersion: v1
type: nginx.org/ca
data:
  ca.crt: <base64encoded-certificate>

A VirtualServer that references an IngressMTLS policy must:

  • Turn on TLS termination.
  • Reference the policy in the VirtualServer spec. You can’t reference an IngressMTLS policy in a route or in a VirtualServerRoute subroute.

A Kubernetes Ingress that references an IngressMTLS policy must:

  • Turn on TLS termination.
  • Reference the policy on the Ingress. For mergeable Ingresses, reference the policy on the master Ingress only. You can’t reference an IngressMTLS policy on a minion Ingress.

If a resource doesn’t meet these conditions, NGINX sends the 500 status code to clients.

You can pass the client certificate details, including the certificate, to the upstream servers. For example:

yaml
action:
  proxy:
    upstream: webapp
    requestHeaders:
      set:
      - name: client-cert-subj-dn
        value: ${ssl_client_s_dn} # subject DN
      - name: client-cert
        value: ${ssl_client_escaped_cert} # client certificate in the PEM format (urlencoded)

This example uses the requestHeaders of Action.Proxy to set the values of the two headers that NGINX passes to the upstream servers. See the list of embedded variables that ngx_http_ssl_module supports, which you can use to pass the client certificate details.

This feature uses the NGINX ngx_http_ssl_module.

Configure a certificate revocation list

The IngressMTLS policy supports configuring a certificate revocation list (CRL) for your policy, in one of two ways.

You can use only one of these configuration options at a time.
  1. Add the ca.crl field to the nginx.org/ca secret type, which accepts a base64 encoded certificate revocation list.

    Example:

    yaml
    kind: Secret
    metadata:
      name: ingress-mtls-secret
    apiVersion: v1
    type: nginx.org/ca
    data:
      ca.crt: <base64encoded-certificate>
      ca.crl: <base64encoded-crl>
  2. Add the crlFileName field to your IngressMTLS policy spec with the name of the CRL file.

    Use this configuration option only when your CRL is larger than 1 MiB. Otherwise, use the nginx.org/ca secret type to manage your CRL.

    Example:

    yaml
    apiVersion: k8s.nginx.org/v1
    kind: Policy
    metadata:
      name: ingress-mtls-policy
    spec:
    ingressMTLS:
        clientCertSecret: ingress-mtls-secret
        crlFileName: webapp.crl
        verifyClient: "on"
        verifyDepth: 1
Important

When you configure a CRL with the ingressMTLS.crlFileName field, keep this additional context in mind:

  • NGINX Ingress Controller expects the CRL, in this case webapp.crl, to be in /etc/nginx/secrets. Add a volume mount to the NGINX Ingress Controller deployment to add your CRL to /etc/nginx/secrets.
  • When you update the content of your CRL, for example after you revoke a new certificate, NGINX needs to reload to pick up the latest changes. Depending on your environment, this may require you to update the name of your CRL and apply this update to your ingress-mtls.yaml policy so NGINX picks up the latest CRL.

See the Kubernetes documentation on volumes to find the best implementation for your environment.

Field Description Type Required
clientCertSecret The name of the Kubernetes secret that stores the CA certificate. It must be in the same namespace as the Policy resource. The secret must be of the type nginx.org/ca, and the certificate must be stored in the secret under the key ca.crt. Otherwise, NGINX Ingress Controller rejects the secret as invalid. string Yes
verifyClient Verification for the client. Possible values are "on", "off", "optional", "optional_no_ca". The default is "on". string No
verifyDepth Sets the verification depth in the client certificates chain. The default is 1. int No
crlFileName The file name of the Certificate Revocation List. NGINX Ingress Controller looks for this file in /etc/nginx/secrets. string No

IngressMTLS merging behavior

A VirtualServer or an Ingress can reference only a single IngressMTLS policy, and NGINX Ingress Controller ignores every subsequent reference. For example, this configuration references two policies:

yaml
policies:
- name: ingress-mtls-policy-one
- name: ingress-mtls-policy-two

In this example, NGINX Ingress Controller uses the configuration from the first policy reference, ingress-mtls-policy-one, and ignores ingress-mtls-policy-two.

EgressMTLS

The EgressMTLS policy configures upstream authentication and certificate verification.

For example, the following policy uses egress-mtls-secret to authenticate with the upstream application and egress-trusted-ca-secret to verify the certificate of the application:

yaml
egressMTLS:
  tlsSecret: egress-mtls-secret
  trustedCertSecret: egress-trusted-ca-secret
  verifyServer: on
  verifyDepth: 2
This feature uses the NGINX ngx_http_proxy_module.
Field Description Type Required
tlsSecret The name of the Kubernetes secret that stores the TLS certificate and key. It must be in the same namespace as the Policy resource. The secret must be of the type kubernetes.io/tls, the certificate must be stored in the secret under the key tls.crt, and the key must be stored under the key tls.key. Otherwise, NGINX Ingress Controller rejects the secret as invalid. string No
trustedCertSecret The name of the Kubernetes secret that stores the CA certificate. It must be in the same namespace as the Policy resource. The secret must be of the type nginx.org/ca, and the certificate must be stored in the secret under the key ca.crt. Otherwise, NGINX Ingress Controller rejects the secret as invalid. string No
verifyServer Turns on verification of the upstream HTTPS server certificate. bool No
verifyDepth Sets the verification depth in the proxied HTTPS server certificates chain. The default is 1. int No
sessionReuse Turns on reuse of SSL sessions to the upstreams. The default is true. bool No
serverName Turns on passing of the server name through the Server Name Indication extension. bool No
sslName Lets you override the server name used to verify the certificate of the upstream HTTPS server. string No
ciphers Specifies the enabled ciphers for requests to an upstream HTTPS server. The default is DEFAULT. string No
protocols Specifies the protocols for requests to an upstream HTTPS server. The default is TLSv1 TLSv1.1 TLSv1.2. string No

EgressMTLS merging behavior

A VirtualServer or VirtualServerRoute can reference multiple EgressMTLS policies, but NGINX Ingress Controller applies only the first one. It ignores every subsequent reference. For example, this configuration references two policies:

yaml
policies:
- name: egress-mtls-policy-one
- name: egress-mtls-policy-two

In this example, NGINX Ingress Controller uses the configuration from the first policy reference, egress-mtls-policy-one, and ignores egress-mtls-policy-two.

ExternalAuth

Subrequests may not function as expected and may cause issues when the ExternalAuth policy and a WAF policy are applied together on the same route.

The ExternalAuth policy configures NGINX to authenticate client requests using an external authentication server. You can use this policy with services such as oauth2-proxy or any custom authentication service that supports the auth_request pattern.

When a client sends a request, NGINX makes an internal subrequest to the external authentication service. If the service returns a 2xx response, NGINX forwards the original request to the upstream. If it returns 401 or 403, NGINX denies access. If you configure authSigninURI, NGINX redirects unauthenticated clients to a sign-in page.

For example, the following policy configures external authentication using an HTTP Basic Auth backend service:

yaml
externalAuth:
  authURI: "/auth"
  authServiceName: "default/basic-auth-svc"

The following policy uses OAuth2 Proxy with a sign-in redirect:

yaml
externalAuth:
  authURI: "/oauth2/auth"
  authSigninURI: "/oauth2/signin"
  authServiceName: "default/oauth2-proxy-svc"
  sslEnabled: true
  sslVerify: true
  sslVerifyDepth: 2
  sniName: "external-auth-tls"
  trustedCertSecret: "external-auth-ca-secret"

An example ExternalAuth policy for VirtualServer resources is available in the GitHub repository for basic auth and OAuth2 with basic auth. Examples for Ingress resources are also available for basic auth and OAuth2 with basic auth using mergeable Ingresses.

Field Description Type Required
authURI The URI of the external authentication server. NGINX sends an internal subrequest to this URI to verify the client. Must start with /. For example, /auth or /oauth2/auth. string Yes
authServiceName The name of the Kubernetes service for the external authentication server. Can include an optional namespace prefix in the format <namespace>/<service>. For example, basic-auth-svc or auth-namespace/auth-service. If no namespace is specified, the namespace of the Policy resource is used. string Yes
authServicePorts The ports of the Kubernetes service to which authentication requests are sent. If not specified, the first port from the service definition is used. []int No
authSigninURI The URI to redirect unauthenticated clients to for sign-in. Used when the external authentication server requires redirection, such as with OAuth2 Proxy. Must start with /. For example, /oauth2/signin. string No
authSnippets Custom NGINX configuration snippets to add to the external authentication location block. For example, you can add extra headers or parameters for the auth_request module. The content must be valid NGINX configuration. Requires the -enable-snippets command-line argument. string No
authSigninRedirectBasePath The base path for the NGINX location block that handles sign-in redirect requests from the external authentication server. For example, OAuth2 Proxy expects /oauth2. Defaults to /oauth2 if not specified. string No
sslEnabled Turns on HTTPS when proxying requests to the external authentication server. The default is false. bool No
sslVerify Turns on verification of the external authentication server’s SSL certificate. The default is false. bool No
sslVerifyDepth Sets the verification depth in the external authentication server certificates chain. The default is 1. int No
trustedCertSecret The name of the Kubernetes secret that stores the CA certificate for external authentication server certificate verification. Can include an optional namespace prefix as <namespace>/<secret>. The secret must be of the type nginx.org/ca, and the certificate must be stored under the key ca.crt. string No
sniName The server name used for SNI and certificate verification when connecting to the external authentication server over TLS. If not specified, defaults to <service-name>.<namespace>.svc derived from authServiceName. string No

ExternalAuth merging behavior

A VirtualServer, VirtualServerRoute, Ingress, or mergeable Ingress can reference only one ExternalAuth policy per route, and NGINX Ingress Controller ignores every subsequent reference. This means you can’t combine different types of external authentication on the same route. For example, you can’t apply both an OAuth2 policy and a basic auth policy to the same route.

yaml
policies:
- name: external-auth-policy-one
- name: external-auth-policy-two

NGINX Ingress Controller uses the configuration from the first policy reference, external-auth-policy-one, and ignores external-auth-policy-two. To use different authentication methods on different routes, apply each ExternalAuth policy to its own route.

OAuth2 sign-in redirect location

When you configure authSigninURI, NGINX Ingress Controller generates an internal location block to handle sign-in redirects, based on authSigninRedirectBasePath, which defaults to /oauth2. Because NGINX location blocks are defined at the server level, only one sign-in redirect location can exist per host. If multiple routes on the same VirtualServer, VirtualServerRoute, Ingress, or mergeable Ingress host reference ExternalAuth policies with authSigninURI, NGINX Ingress Controller uses the sign-in redirect configuration from the first policy it processes. All routes that use authSigninURI share that single redirect location.

This means all routes on the same host that require OAuth2 sign-in must use the same OAuth2 Proxy backend for the redirect flow. If you need different OAuth2 providers for different routes, use separate hosts.

OIDC

This feature is turned off by default. To turn it on, set the enable-oidc command-line argument of NGINX Ingress Controller.
Subrequests may not function as expected and may cause issues when the OIDC policy and a WAF policy are applied together on the same route.

The OIDC policy configures NGINX Plus as a relying party for OpenID Connect authentication.

For example, the following policy uses the client ID nginx-plus and the client secret oidc-secret to authenticate with the OpenID Connect provider https://idp.example.com:

yaml
spec:
  oidc:
    clientID: nginx-plus
    clientSecret: oidc-secret
    authEndpoint: https://idp.example.com/openid-connect/auth
    tokenEndpoint: https://idp.example.com/openid-connect/token
    jwksURI: https://idp.example.com/openid-connect/certs
    endSessionEndpoint: https://idp.example.com/openid-connect/logout
    postLogoutRedirectURI: /
    accessTokenEnable: true
    pkceEnable: false

NGINX Plus passes the ID of an authenticated user to the backend in the HTTP header username.

This feature uses the reference implementation of NGINX Plus as a relying party for OpenID Connect authentication.

Prerequisites

To use OIDC, turn on zone synchronization. If you don’t set up zone synchronization, NGINX Plus fails to reload.

You also need to configure a resolver, which NGINX Plus uses to resolve the IDP authorization endpoint. You can find an example configuration in the GitHub repository.

Warning
The configuration in the example doesn’t turn on TLS, so synchronization between replicas happens in clear text. This can expose tokens.

Limitations

The OIDC policy defines a few internal locations that you can’t customize: /_jwks_uri, /_token, /_refresh, /_id_token_validation, /logout. In addition, /_codexch is the default value for the redirect URI, and /_logout is the default value for the post logout redirect URI. You can customize both. Specifying one of these locations as a route in the VirtualServer or VirtualServerRoute causes a collision, and NGINX Plus fails to reload.

Field Description Type Required
clientID The client ID provided by your OpenID Connect provider. string Yes
clientSecret The name of the Kubernetes secret that stores the client secret provided by your OpenID Connect provider. It must be in the same namespace as the Policy resource. The secret must be of the type nginx.org/oidc, and the secret stored under the key client-secret. Otherwise, NGINX Ingress Controller rejects the secret as invalid. If you enable PKCE, don’t configure this field. string Yes
authEndpoint URL for the authorization endpoint provided by your OpenID Connect provider. string Yes
authExtraArgs A list of extra URL arguments to pass to the authorization endpoint provided by your OpenID Connect provider. Arguments must be URL encoded, multiple arguments may be included in the list, for example [ arg1=value1, arg2=value2 ] string[] No
tokenEndpoint URL for the token endpoint provided by your OpenID Connect provider. string Yes
endSessionEndpoint URL provided by your OpenID Connect provider to request the end user be logged out. string No
jwksURI URL for the JSON Web Key Set (JWK) document provided by your OpenID Connect provider. string Yes
scope List of OpenID Connect scopes. The scope openid always needs to be present and others can be added concatenating them with a + sign, for example openid+profile+email, openid+email+userDefinedScope. The default is openid. string No
redirectURI Lets you override the default redirect URI. The default is /_codexch. string No
postLogoutRedirectURI URI to redirect to after the logout has been performed. Requires endSessionEndpoint. The default is /_logout. string No
zoneSyncLeeway Specifies the maximum timeout in milliseconds for synchronizing ID/access tokens and shared values between Ingress Controller pods. The default is 200. int No
accessTokenEnable Option of whether Bearer token is used to authorize NGINX to access protected backend. boolean No
pkceEnable Turns on Proof Key for Code Exchange. The OpenID client needs to be in public mode. clientSecret is not used in this mode. boolean No
sslVerify Use this option to turn on TLS verification when calls are made to the IDP endpoints. boolean No
verifyDepth Sets the verification depth in the proxied HTTPS server certificates chain. The default is 1. int No
trustedCertSecret The name of the Kubernetes secret that stores the CA certificate. It must be in the same namespace as the Policy resource. The secret must be of the type nginx.org/ca, and the certificate must be stored in the secret under the key ca.crt. Otherwise, NGINX Ingress Controller rejects the secret as invalid. string No
Only one OIDC policy can be referenced in a VirtualServer and its VirtualServerRoutes. However, you can still apply the same policy to different routes in the VirtualServer and VirtualServerRoutes.

OIDC merging behavior

A VirtualServer or VirtualServerRoute can reference only a single OIDC policy, and NGINX Ingress Controller ignores every subsequent reference. For example, this configuration references two policies:

yaml
policies:
- name: oidc-policy-one
- name: oidc-policy-two

In this example, NGINX Ingress Controller uses the configuration from the first policy reference, oidc-policy-one, and ignores oidc-policy-two.

OIDCNative

This feature is only available with NGINX Plus and requires the enable-oidc command-line argument.

The OIDCNative policy configures NGINX Plus as a relying party for OpenID Connect authentication using the built-in ngx_http_oidc_module. Unlike the NJS-based oidc policy, the native implementation handles the entire OIDC flow within the NGINX core, including token exchange, session management, and front-channel logout.

For example, the following policy authenticates users against a Keycloak identity provider:

yaml
spec:
  oidcNative:
    issuer: https://idp.example.com/realms/master
    clientID: nginx-plus
    clientSecret: oidc-secret
    scope: openid profile email
    logoutURI: /logout
    postLogoutRedirectURI: /_logout
This feature uses the NGINX ngx_http_oidc_module.

Prerequisites

Configure a resolver so NGINX Plus can resolve the identity provider’s hostname for discovery and token exchange. Add the following to your ConfigMap:

yaml
data:
  resolver-addresses: "kube-dns.kube-system.svc.cluster.local"

When you use the zone synchronization feature, NGINX Ingress Controller synchronizes OIDC session data across all replicas. Put the ConfigMap in its final state, with or without zone sync turned on, before you create the OIDCNative policy and its referencing VirtualServer or Ingress. NGINX declares the native module’s session zone with sync only when zone sync is turned on, and NGINX can’t change the sync flag of an existing shared memory zone across a reload.

Differences from the NJS-based OIDC policy

Aspect OIDC (NJS) OIDCNative (native module)
Implementation NGINX JavaScript reference implementation Built-in ngx_http_oidc_module
Discovery Manual endpoint configuration (authEndpoint, tokenEndpoint, jwksURI) Automatic through OpenID Connect Discovery (issuer or configURL)
Ingress Support No Yes, through nginx.com/policies annotation
Front-channel logout Through NJS handler Through frontChannelLogoutURI directive
PKCE pkceEnable boolean pkce enum (on/off), auto-detected from provider metadata by default
Multiple providers per host One per VirtualServer Multiple (unique provider per policy and resource combination)
Important

oidc and oidcNative are mutually exclusive. A Policy resource must define only one of them. If you set both, NGINX Ingress Controller marks the Policy as Invalid.

On a VirtualServer, if you apply both an oidc policy and an oidcNative policy to the same route, that route gets a Warning status and returns a static 500 response.

Field Description Type Required Default
issuer The Issuer Identifier URL of the OpenID Provider. Must use the https scheme and exactly match the value of issuer in the OpenID Provider metadata. string Yes
clientID The client ID provided by your OpenID Connect provider. string Yes
clientSecret The name of the Kubernetes secret that stores the client secret. Must be of type nginx.org/oidc with the secret stored under the key client-secret and must be in the same namespace as the Policy resource. Not required when PKCE is enabled with a public client. string No
configURL The URL of the OpenID Provider Configuration Information (discovery endpoint). Must include a path and use the http or https scheme. If not set, defaults to <issuer>/.well-known/openid-configuration. string No <issuer>/.well-known/openid-configuration
scope Space-separated list of OpenID Connect scopes. Must contain openid. Example: "openid profile email". string No openid
redirectURI Overrides the default redirect URI path used for the authorization callback. string No /oidc_callback_<providerName>
cookieName Sets the name of the session cookie. Must contain only letters, digits, and underscores. string No NGX_OIDC_<providerName>
extraAuthArgs Additional query arguments appended to the authorization request URL. Example: "display=page&prompt=login". string No
pkce Explicitly turns PKCE on or off. By default, NGINX Ingress Controller turns on PKCE automatically based on OpenID Provider metadata. string (on/off) No
logoutURI URI path for initiating session logout. Session logout is unavailable until this field is set. Use a path the attached route can serve, for example /logout for a policy on the / route, or /tea/logout for a policy on the /tea route. A path outside the attached route isn’t matched by that route’s location, so logout doesn’t trigger. string No
postLogoutRedirectURI Path the user is returned to after logout completes. Must be a path on the same host, absolute URLs aren’t supported. NGINX Ingress Controller generates an unauthenticated location at this path serving a plain-text confirmation, shared if multiple providers use the same path. string No
frontChannelLogoutURI URI path for OIDC front-channel logout. When set, the identity provider calls this URI in a hidden iframe during global logout, letting NGINX end the local session. string No
logoutTokenHint Adds the id_token_hint argument to the provider’s logout endpoint when redirecting the user during logout. Required by some providers. bool No false
sessionTimeout Duration after which the session expires unless refreshed. Example: "8h", "30m". string No 8h
userInfoEnable Turns on downloading of the UserInfo data and makes UserInfo claims available through $oidc_claim_<name> variables. bool No false
trustedCertSecret The name of the Kubernetes secret that stores the CA certificate for verifying the provider’s TLS certificate. Must be of type nginx.org/ca with the certificate stored under key ca.crt. string No
sslVerify Turns on verification of the OpenID Provider’s TLS certificate. Set to false to skip verification (dev/test only). bool No true
sslName Overrides the TLS SNI name and Host header used when connecting to the OpenID Provider. Must be a valid DNS name and can’t include a port. When unset, the hostname of the endpoint being called is used, taken from the provider’s discovery metadata. string No
sslVerifyDepth Verification depth in the OpenID Provider TLS certificate chain. int No 1
proxyBufferSize Buffer size used when proxying requests to the OpenID Provider. Applies to proxy_buffer_size and each buffer in proxy_buffers. string No 32k

OIDCNative on Ingress

When using OIDCNative with Ingress resources, reference the policy through the nginx.com/policies annotation:

yaml
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
  name: webapp
  annotations:
    nginx.com/policies: "oidc-native-policy"
spec:
  ingressClassName: nginx
  tls:
    - hosts:
        - webapp.example.com
      secretName: tls-secret
  rules:
    - host: webapp.example.com
      http:
        paths:
          - path: /
            pathType: Prefix
            backend:
              service:
                name: webapp-svc
                port:
                  number: 80

For mergeable Ingress, you can apply the policy at the master level (server-wide) or on individual minions (location-level):

yaml
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
  name: webapp-master
  annotations:
    nginx.org/mergeable-ingress-type: "master"
    nginx.com/policies: "oidc-native-policy"
spec:
  ingressClassName: nginx
  tls:
    - hosts:
        - webapp.example.com
      secretName: tls-secret
  rules:
    - host: webapp.example.com
Important

On Ingress, reference OIDCNative policies through nginx.com/policies, not nginx.org/policies.

Ingress resources don’t support the NJS-based oidc policy.

OIDCNative merging behavior

A VirtualServer, VirtualServerRoute, or Ingress can reference only a single OIDCNative policy per context, and NGINX Ingress Controller ignores every subsequent reference. For example, this configuration references two policies:

yaml
policies:
- name: oidc-policy-one
- name: oidc-policy-two

In this example, NGINX Ingress Controller uses the configuration from the first policy reference, oidc-policy-one, and ignores oidc-policy-two.

Multiple OIDCNative policies can coexist on the same host when applied to different routes (VirtualServer) or different mergeable Ingress minions. Each generates a unique oidc_provider block with its own session store.

If you override those paths and two policies on the same host claim the same one, for example by setting redirectURI to the same value, NGINX Ingress Controller rejects the conflicting policy and that route or minion returns a 500 response. postLogoutRedirectURI is the exception: providers may share it, and only one location is generated.

Cache

The cache policy configures proxy caching, which improves performance by storing and serving cached responses to clients instead of proxying every request to upstream servers.

Subrequests may not function as expected and may cause issues when cacheBackgroundUpdate in a Cache policy and a WAF policy are applied together on the same route.

For example, the following policy creates a cache zone named "mycache" with 10 MB of memory allocated, and caches all GET response codes for 30 seconds:

yaml
cache:
  cacheZoneName: "mycache"
  cacheZoneSize: "10m"
  allowedCodes: ["any"]
  allowedMethods: ["GET"]
  time: "30s"

Here’s an example with more specific configuration:

yaml
cache:
  cacheZoneName: "mycache"
  cacheZoneSize: "100m"
  allowedCodes: [200, 301, 302]
  allowedMethods: ["GET", "POST"]
  time: "5m"
  levels: "1:2"
  overrideUpstreamCache: true
  inactive: "60m"
  useTempPath: false
  maxSize: "10g"
  minFree: "1g"
  manager:
    files: 100
    sleep: "50ms"
    threshold: "200ms"
  cacheKey: "$scheme$host$request_uri"
  cacheUseStale: [ "error", "timeout", "updating", "http_500" ]
  cacheRevalidate: true
  cacheBackgroundUpdate: true
  cacheMinUses: 1
  lock:
    enable: true
    timeout: "5s"
    age: "30s"
  conditions:
    noCache: [ "$cookie_nocache", "$arg_nocache" ]
    bypass: [ "$http_authorization" ]
This feature uses the NGINX ngx_http_proxy_module proxy_cache_path and related directives.
Field Description Type Required
cacheZoneName CacheZoneName defines the name of the cache zone. Must start with a lowercase letter, followed by alphanumeric characters or underscores, and end with an alphanumeric character. Single lowercase letters are also allowed. Examples: "cache", "my_cache", "cache1". string Yes
cacheZoneSize CacheZoneSize defines the size of the cache zone. Must be a number followed by a size unit: 'k' for kilobytes, 'm' for megabytes, or 'g' for gigabytes. Examples: "10m", "1g", "512k". string Yes
allowedCodes AllowedCodes defines which HTTP response codes should be cached. Accepts either: - The string "any" to cache all response codes (must be the only element) - A list of HTTP status codes as integers (100-599) Examples: ["any"], [200, 301, 404], [200]. Invalid: ["any", 200] (cannot mix "any" with specific codes). []IntOrString No
time The default cache time for responses. Required when allowedCodes is specified. Must be a number followed by a time unit: 's' for seconds, 'm' for minutes, 'h' for hours, 'd' for days. Examples: "30s", "5m", "1h", "2d". string No
allowedMethods AllowedMethods defines which HTTP methods should be cached. Only "GET", "HEAD", and "POST" are supported by the NGINX proxy_cache_methods directive. GET and HEAD are always cached by default even if not specified. Maximum of 3 items allowed. Examples: ["GET"], ["GET", "HEAD", "POST"]. Invalid methods: PUT, DELETE, PATCH, and so on. []string No
levels Levels defines the cache directory hierarchy levels for storing cached files. Must be in format "X:Y" or "X:Y:Z" where X, Y, Z are either 1 or 2. This controls the number of subdirectory levels and their name lengths. Examples: "1:2", "2:2", "1:2:2". Invalid: "3:1", "1:3", "1:2:3". string No
overrideUpstreamCache OverrideUpstreamCache controls whether to override upstream cache headers (using the proxy_ignore_headers directive). When true, NGINX ignores cache-related headers from upstream servers like Cache-Control, Expires, and so on. Default: false. bool No
cachePurgeAllow CachePurgeAllow defines IP addresses or CIDR blocks allowed to purge cache. This feature is only available in NGINX Plus. Examples: ["192.168.1.100", "10.0.0.0/8", "::1"]. []string No
cacheKey CacheKey defines a key for caching (proxy_cache_key). By default, "$scheme$proxy_host$uri". Must not contain command execution patterns: $(, `, ;, &&,
cacheUseStale CacheUseStale determines in which cases a stale cached response can be used (proxy_cache_use_stale). Valid parameters: error, timeout, invalid_header, updating, http_500, http_502, http_503, http_504, http_403, http_404, http_429, off. []string No
cacheRevalidate CacheRevalidate turns on revalidation of expired cache items using conditional requests (proxy_cache_revalidate). Uses "If-Modified-Since" and "If-None-Match" header fields. bool No
cacheBackgroundUpdate CacheBackgroundUpdate lets NGINX start a background subrequest to update an expired cache item (proxy_cache_background_update). NGINX returns a stale cached response to the client while it updates the cache. bool No
cacheMinUses CacheMinUses sets the number of requests after which NGINX Ingress Controller caches the response (proxy_cache_min_uses). integer No
inactive Inactive sets the time after which cached data that are not accessed get removed from the cache (inactive parameter). By default, inactive is set to 10 minutes. string No
maxSize MaxSize sets the maximum cache size (max_size parameter). When the size is exceeded, the cache manager removes the least recently used data. string No
minFree MinFree sets the minimum amount of free space required on the file system with cache (min_free parameter). When there is not enough free space, the cache manager removes the least recently used data. string No
useTempPath UseTempPath controls whether temporary files and the cache are put on different file systems (use_temp_path parameter). If set to false, NGINX puts temporary files directly in the cache directory (use_temp_path=off). Default: false (use_temp_path=off, which puts temp files directly in the cache directory for better performance). bool No
manager Manager configures the cache manager process parameters (manager_files, manager_sleep, manager_threshold). object No
manager.files Files sets the maximum number of files that the cache manager deletes in one iteration. During one iteration, the cache manager deletes no more than manager_files items (by default, 100). integer No
manager.sleep Sleep sets the pause between cache manager iterations. Between iterations, a pause configured by manager_sleep (by default, 50 milliseconds) is made. string No
manager.threshold Threshold sets the maximum duration of one cache manager iteration. The duration of one iteration is limited by manager_threshold (by default, 200 milliseconds). string No
lock Lock configures cache locking to prevent multiple identical requests from populating the same cache element simultaneously. object No
lock.enable Enable sets whether cache locking is turned on (proxy_cache_lock). When on, only one request at a time can populate a new cache element according to the proxy_cache_key. bool No
lock.timeout Timeout sets a timeout for proxy_cache_lock. When the time expires, NGINX passes the request to the proxied server, but it doesn’t cache the response. string No
lock.age Age sets the maximum time a cache lock can be held (proxy_cache_lock_age). If the last request passed to the proxied server for populating a new cache element hasn’t completed within the specified time, NGINX may pass one more request. string No
conditions Conditions defines when responses should not be cached or taken from cache. object No
conditions.noCache NoCache defines conditions under which the response won’t be saved to a cache (proxy_no_cache). If at least one value of the string parameters isn’t empty and isn’t equal to "0", NGINX doesn’t save the response. []string No
conditions.bypass Bypass defines conditions under which the response won’t be taken from a cache (proxy_cache_bypass). If at least one value of the string parameters isn’t empty and isn’t equal to "0", NGINX doesn’t take the response from the cache. []string No

Cache merging behavior

A VirtualServer or VirtualServerRoute can reference multiple cache policies, but NGINX Ingress Controller applies only the first one. It ignores every subsequent reference.

CORS

The CORS policy configures Cross-Origin Resource Sharing (CORS) headers.

This feature uses the NGINX add_header directive.

Below is an example of a CORS policy configuring all the available options:

yaml
apiVersion: k8s.nginx.org/v1
kind: Policy
metadata:
  name: cors-policy
spec:
  cors:
    allowOrigin:
      - "https://test.example.com"
      - "https://app.example.com"
      - "https://admin.example.com"

    allowMethods:
      - "GET"
      - "POST"
      - "PUT"

    allowHeaders:
      - "Content-Type"
      - "Authorization"
      - "X-Requested-With"
      - "X-API-Key"

    allowCredentials: true

    exposeHeaders:
      - "X-Total-Count"
      - "X-Page-Size"
      - "X-RateLimit-Remaining"
      - "X-RateLimit-Reset"

    maxAge: 3600 
    
Field Description Type Required
allowOrigin AllowOrigin defines the origins that are allowed to make cross-origin requests. Can be exact domains, single wildcards, or * for all origins. Examples: ["https://example.com", "https://.mydomain.com", ""] Security: When allowCredentials is true, wildcard "*" is not allowed. The server must specify explicit origins for credentialed requests. array[string] Yes
allowMethods AllowMethods defines the HTTP methods that are allowed for cross-origin requests. array[string] No
allowHeaders AllowHeaders defines the headers that are allowed in cross-origin requests. Common safe headers: ["Accept", "Accept-Language", "Content-Language", "Content-Type"] Custom headers: ["Authorization", "X-Requested-With", "X-Custom-Header"] array[string] No
allowCredentials AllowCredentials indicates whether the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether the actual request can be made using credentials. boolean No
exposeHeaders ExposeHeaders defines the headers that browsers are allowed to access. Use this field to expose additional custom headers to the browser. Example: ["X-Total-Count", "X-Page-Size", "X-RateLimit-Remaining"] Note: Set-Cookie headers cannot be exposed through CORS per official MDN specification. array[string] No
maxAge MaxAge defines how long (in seconds) the results of a preflight request can be cached. Default: 86400 (24 hours). integer No
If CORS is currently configured in deployments using snippets or responseHeaders.add, migrate those settings to the CORS policy and remove the duplicate configuration.

CORS merging behavior

A VirtualServer or VirtualServerRoute can reference multiple CORS policies, but NGINX Ingress Controller applies only the first one. It ignores every subsequent reference.

WAF

This feature uses the NGINX Plus F5 WAF for NGINX module.
Policies that rely on NGINX subrequests (such as ExternalAuth, APIKey, JWT with remote JWKS fetching, OIDC, or Cache with cacheBackgroundUpdate) and a WAF policy may not function as expected and may cause issues when applied together on the same route.

The WAF policy configures NGINX Plus to secure client requests using F5 WAF for NGINX policies.

For example, the following policy turns on the referenced APPolicy. You can configure multiple APLogConfs with log destinations:

yaml
waf:
  enable: true
  apPolicy: "default/dataguard-alarm"
  securityLogs:
  - enable: true
    apLogConf: "default/logconf"
    logDest: "syslog:server=syslog-svc.default:514"
  - enable: true
    apLogConf: "default/logconf"
    logDest: "syslog:server=syslog-svc-secondary.default:514"
The field waf.securityLog is deprecated and will be removed in a future release. NGINX Ingress Controller ignores it if waf.securityLogs is populated.
Field Description Type Required
enable Turns on F5 WAF for NGINX. bool Yes
apPolicy The F5 WAF for NGINX policy of the WAF. References an APPolicy CR by [<namespace>/]<name>. When you start the Ingress Controller with -plm-storage-url, PLM must have compiled the referenced APPolicy (status.bundle.state == ready). Mutually exclusive with apBundle. string No
apBundle The F5 WAF for NGINX policy bundle. Mutually exclusive with apPolicy and apBundleSource. string No
apBundleSource Remote source for fetching the WAF policy bundle. Mutually exclusive with apBundle and apPolicy. waf.apBundleSource No
securityLog.enable Deprecated: Turns on the security log. bool No
securityLog.apLogConf Deprecated: The F5 WAF for NGINX log conf resource. Accepts an optional namespace. Only works with apPolicy. string No
securityLog.apLogBundle Deprecated: The F5 WAF for NGINX log bundle resource. Only works with apBundle. string No
securityLog.logDest Deprecated: The log destination for the security log. Only accepted variables are syslog:server=<ip-address>; localhost; <fqdn>:<port>, stderr, <absolute path to file>. string No
securityLogs Config for security log destinations. waf.securityLogs No

WAF.SecurityLogs

Field Description Type Required
enable Turns on the security log. bool No
apLogConf The App Protect WAF log conf resource. apLogConf references an APLogconf CR by [<NAMESPACE>/]<NAME>. When you start the Ingress Controller with -plm-storage-url, PLM must have compiled the referenced APLogConf (status.bundle.state == ready). Only works with apPolicy. string No
apLogBundle The App Protect WAF log bundle resource. Only works with apBundle. Mutually exclusive with apLogBundleSource. string No
apLogBundleSource Remote source for fetching the log profile bundle. Mutually exclusive with apLogBundle. waf.apBundleSource No
logDest The log destination for the security log. Only accepted variables are syslog:server=<ip-address>; localhost; <fqdn>:<port>, stderr, <absolute path to file>. string No

WAF.ApBundleSource

The apBundleSource object configures how NGINX Ingress Controller fetches a pre-compiled WAF bundle from a remote source. waf.securityLogs[].apLogBundleSource uses the same fields. NGINX Ingress Controller supports three source types:

  • N1C (NGINX One Console) – fetch policies compiled and managed through NGINX One Console. See policy docs.
  • NIM (NGINX Instance Manager) – fetch policies compiled and managed through NGINX Instance Manager. See bundle docs.
  • HTTPS – fetch compiled .tgz bundles from any HTTPS server or endpoint.

For details and examples, see Connect F5 WAF for NGINX to bundle sources.

Field Description Type Required
type Source backend: N1C (NGINX One Console), NIM (NGINX Instance Manager), or HTTPS. Defaults to HTTPS. string No
url Tenant URL for N1C/NIM, or full .tgz bundle URL for HTTPS. Must use https://. string Yes
name Management-plane policy name for N1C/NIM. For apLogBundleSource, set this to the log profile name. Ignored for HTTPS. string No
namespace Management-plane namespace or tenant. Required for N1C. Not used for NIM or HTTPS. string No
enablePolling Must be explicitly set. When true, NIC re-fetches the bundle at pollInterval. When false, NIC fetches the bundle once at policy creation or update. bool Yes
pollInterval How often to re-fetch when enablePolling is true. Minimum 1m, default 5m. string No
secret Secret in the same namespace as the Policy. For N1C/NIM, use nginx.com/waf-bundle (token or username/password). For HTTPS, use kubernetes.io/tls for client mTLS (tls.crt and tls.key). string No
trustedCertSecret Name of an nginx.org/ca Secret containing a custom CA certificate (ca.crt) for verifying the server TLS certificate. Must be in the same namespace as the Policy. string No
insecureSkipVerify Turns off TLS certificate verification. Not recommended for production. bool No
verifyChecksum Turns on SHA-256 verification of the downloaded bundle. HTTPS only. bool No
timeout Time limit for a single bundle fetch request. Default 60s. string No
retryAttempts Number of additional fetch attempts after a temporary fetch error (for example, a timeout or HTTP 5xx). Valid range is 1-10. int No

For example, see the snippets below:

for NGINX Instance Manager:

yaml
spec:
  waf:
    enable: true
    apBundleSource:
      type: NIM
      url: "https://<nim_host>"
      name: "<policy_name>"
      secret: "nim-credentials"
      enablePolling: true
      pollInterval: "5m"
    securityLogs:
    - enable: true
      apLogBundleSource:
        type: NIM
        url: "https://<nim_host>"
        name: "<log_profile_name>"
        secret: "nim-credentials"
        enablePolling: true
        pollInterval: "5m"
      logDest: "stderr"

for NGINX One Console:

yaml
spec:
  waf:
    enable: true
    apBundleSource:
      type: N1C
      url: "https://<tenant>.console.ves.volterra.io"
      name: "<policy_name>"
      namespace: "default"
      secret: "n1c-credentials"
      enablePolling: true
      pollInterval: "5m"
    securityLogs:
    - enable: true
      apLogBundleSource:
        type: N1C
        url: "https://<tenant>.console.ves.volterra.io"
        name: "secops_dashboard"
        namespace: "default"
        secret: "n1c-credentials"
        enablePolling: true
        pollInterval: "5m"
      logDest: "stderr"

For HTTPS:

yaml
spec:
  waf:
    enable: true
    apBundleSource:
      url: "https://bundle-server.default.svc.cluster.local/bundles/attack-signatures-blocking.tgz"
      secret: "bundle-client-tls"
      trustedCertSecret: "bundle-server-ca"
      enablePolling: true
      pollInterval: "5m"
    securityLogs:
    - enable: true
      apLogBundleSource:
        url: "https://bundle-server.default.svc.cluster.local/bundles/log-default.tgz"
        secret: "bundle-client-tls"
        trustedCertSecret: "bundle-server-ca"
        enablePolling: true
        pollInterval: "5m"
      logDest: "stderr"

WAF merging behavior

A VirtualServer or VirtualServerRoute can reference multiple WAF policies, but NGINX Ingress Controller applies only the first one. It ignores every subsequent reference. For example, this configuration references two policies:

yaml
policies:
- name: waf-policy-one
- name: waf-policy-two

In this example, NGINX Ingress Controller uses the configuration from the first policy reference, waf-policy-one, and ignores waf-policy-two.

HSTS

The HSTS policy sets up HTTP Strict Transport Security. It instructs browsers to enforce HTTPS connections to the host for a specified duration.

For example, the following policy sets an HSTS duration of 30 days and extends the policy to all host subdomains:

yaml
hsts:
  maxAge: 2592000
  includeSubDomains: true

When you deploy NGINX Ingress Controller behind a proxy or load balancer that terminates TLS upstream, set behindProxy to true. In this mode, NGINX uses the X-Forwarded-Proto request header to determine whether the connection is HTTPS, instead of checking the $https variable directly:

yaml
hsts:
  maxAge: 2592000
  behindProxy: true

A VirtualServer that references an HSTS policy must:

  • Use TLS termination, or set behindProxy to true if TLS is terminated upstream.
  • Reference the policy in the VirtualServer spec. You can’t reference an HSTS policy in a route or in a VirtualServerRoute subroute.

If a resource doesn’t meet these conditions, NGINX sends status code 500 to clients.

This feature uses the NGINX add_header directive and the ngx_http_ssl_module $https variable.
Field Description Type Required Default
maxAge Sets the duration in seconds that the browser should cache and enforce the HSTS policy. int Yes
includeSubDomains Extends the HSTS policy to all subdomains of the host. bool No false
behindProxy Sets the HSTS header based on the X-Forwarded-Proto request header rather than the $https variable. Set this to true when you deploy NGINX Ingress Controller behind a proxy or load balancer that terminates TLS upstream. bool No false
preload Adds the domain to browsers' HSTS preload lists. Requires includeSubDomains to be set to true and maxAge to be at least 31536000 (one year). bool No false
Important

HSTS instructs browsers to enforce HTTPS for the duration of maxAge. Deleting the policy doesn’t clear the browser’s cached directive, so users may be unable to access the application over HTTP until the cached policy expires.

To remove HSTS safely, first set maxAge to 0 and apply the updated policy. This instructs browsers to expire the cached directive immediately. Once applied, remove the policy reference from the VirtualServer and delete the policy resource.

See the MDN documentation on HSTS expiration for more details.

HSTS merging behavior

A VirtualServer can reference only a single HSTS policy, and NGINX Ingress Controller ignores every subsequent reference. For example, this configuration references two policies:

yaml
policies:
- name: hsts-policy-one
- name: hsts-policy-two

In this example, NGINX Ingress Controller uses the configuration from the first policy reference, hsts-policy-one, and ignores hsts-policy-two.

What’s next

Learn how to manage Policy resources with kubectl.