Single Sign-On with Okta
This guide explains how to enable single sign-on (SSO) for applications being proxied by F5 NGINX Plus. The solution uses OpenID Connect as the authentication mechanism, with Okta as the Identity Provider (IdP), and NGINX Plus as the Relying Party, or OIDC client application that verifies user identity.
This guide applies to NGINX Plus Release 34 and later. In earlier versions, NGINX Plus relied on an njs-based solution, which required NGINX JavaScript files, key-value stores, and advanced OpenID Connect logic. In the latest NGINX Plus version, the new OpenID Connect module simplifies this process to just a few directives.
Prerequisites
-
An Okta administrator account with privileges to create and manage applications.
-
An NGINX Plus subscription and NGINX Plus Release 34 or later. For installation instructions, see Installing NGINX Plus.
-
A domain name pointing to your NGINX Plus instance, for example,
demo.example.com
.
Configure Okta
In Okta, register a new application for NGINX Plus as the OIDC client to obtain the Client ID, Client Secret, and required OIDC endpoints.
-
Log in to your Okta admin console.
-
In the Admin Console, go to Applications > Applications.
-
Select Create App Integration.
-
In Create a new app integration, select:
-
Sign-in method:
OIDC - OpenID Connect
. -
Application type:
Web Application
. -
Select Next.
-
-
In New Web App Integration:
-
Enter the Name for your new application, for example, Nginx Demo App.
-
Add a URI for the OIDC callback in Sign-in redirect URIs, for example,
https://demo.example.com/oidc_callback
. -
Select Save.
-
-
In Applications, select Nginx Demo App.
-
In the General tab:
-
Copy the Client ID. You will need it later when configuring NGINX Plus.
-
Copy the Client secret. You will need it later when configuring NGINX Plus.
-
-
In the Sign On tab:
-
Copy the Okta Issuer (Authorization Server), for example:
https://dev-123456.oktapreview.com/oauth2/default
You will need it later when configuring NGINX Plus.
-
You will need the values of Client ID, Client Secret, and Issuer in the next steps.
Assign Users or Groups
By default, Okta might limit application access to certain users or groups. To add or remove users in Okta:
-
Log in to your Okta admin console.
-
In Applications, choose Nginx Demo App.
-
Go to Assignments.
-
Add or remove users and groups that can access this application.
Set up NGINX Plus
With Okta configured, you can enable OIDC on NGINX Plus. NGINX Plus serves as the Rely Party (RP) application — a client service that verifies user identity.
-
Ensure that you are using the latest version of NGINX Plus by running the
nginx -v
command in a terminal:nginx -v
The output should match NGINX Plus Release 34 or later:
nginx version: nginx/1.27.4 (nginx-plus-r34)
-
Ensure that you have the values of the Client ID, Client Secret, and Issuer obtained during Okta Configuration.
-
In your preferred text editor, open the NGINX configuration file (
/etc/nginx/nginx.conf
for Linux or/usr/local/etc/nginx/nginx.conf
for FreeBSD). -
In the
http {}
context, make sure your public DNS resolver is specified with theresolver
directive: By default, NGINX Plus re‑resolves DNS records at the frequency specified by time‑to‑live (TTL) in the record, but you can override the TTL value with thevalid
parameter:http { resolver 10.0.0.1 ipv4=on valid=300s; # ... }
-
In the
http {}
context, define the Okta provider namedokta
by specifying theoidc_provider {}
context:http { resolver 10.0.0.1 ipv4=on valid=300s; oidc_provider okta { # ... } # ... }
-
In the
oidc_provider {}
context, specify:-
your actual Okta Client ID obtained in Okta Configuration with the
client_id
directive -
your Client Secret obtained in Okta Configuration with the
client_secret
directive -
the Issuer URL obtained in Okta Configuration with the
issuer
directiveThe
issuer
is typically your Okta OIDC URL:https://dev-123456.okta.com/oauth2/default
. -
Important: All interaction with the IdP is secured exclusively over SSL/TLS, so NGINX must trust the certificate presented by the IdP. By default, this trust is validated against your system’s CA bundle (the default CA store for your Linux or FreeBSD distribution). If the IdP’s certificate is not included in the system CA bundle, you can explicitly specify a trusted certificate or chain with the
ssl_trusted_certificate
directive so that NGINX can validate and trust the IdP’s certificate.
http { resolver 10.0.0.1 ipv4=on valid=300s; oidc_provider okta { issuer https://dev-123456.okta.com/oauth2/default; client_id <client_id>; client_secret <client_secret>; } # ... }
-
-
Make sure you have configured a server that corresponds to
demo.example.com
, and there is a location that points to your application (see Step 10) athttp://127.0.0.1:8080
that is going to be OIDC-protected:http { # ... server { listen 443 ssl; server_name demo.example.com; ssl_certificate /etc/ssl/certs/fullchain.pem; ssl_certificate_key /etc/ssl/private/key.pem; location / { # ... proxy_pass http://127.0.0.1:8080; } } # ... }
-
Protect this location with Okta OIDC by specifying the
auth_oidc
directive that will point to theokta
configuration specified in theoidc_provider {}
context in Step 5:# ... location / { auth_oidc okta; # ... proxy_pass http://127.0.0.1:8080; } # ...
-
Pass the OIDC claims as headers to the application (Step 10) with the
proxy_set_header
directive. These claims are extracted from the ID token returned by Okta:-
$oidc_claim_sub
- a uniqueSubject
identifier assigned for each user by Okta -
$oidc_claim_email
the e-mail address of the user -
$oidc_claim_name
- the full name of the user -
any other OIDC claim using the
$oidc_claim_
variable
# ... location / { auth_oidc okta; proxy_set_header sub $oidc_claim_sub; proxy_set_header email $oidc_claim_email; proxy_set_header name $oidc_claim_name; proxy_pass http://127.0.0.1:8080; } # ...
-
-
Create a simple test application referenced by the
proxy_pass
directive which returns the authenticated user’s full name and email upon successful authentication:# ... server { listen 8080; location / { return 200 "Hello, $http_name!\nEmail: $http_email\nSub: $http_sub\n"; default_type text/plain; } }
-
Save the NGINX configuration file and reload the configuration:
nginx -s reload
Complete Example
This configuration example summarizes the steps outlined above. It includes only essential settings such as specifying the DNS resolver, defining the OIDC provider, configuring SSL, and proxying requests to an internal server.
http {
# Use a public DNS resolver for Issuer discovery, etc.
resolver 10.0.0.1 ipv4=on valid=300s;
# Define the OIDC provider block for Okta
oidc_provider okta {
# The 'issuer' is your Okta issuer URL
# For okta dev it looks like: https://dev-123456.okta.com/oauth2/default
issuer https://dev-123456.okta.com/oauth2/default;
# Your Okta “Client ID” from the application settings
client_id <your_client_id>;
# Your Okta “Client Secret” from the application settings
client_secret <your_client_secret>;
}
server {
listen 443 ssl;
server_name demo.example.com;
ssl_certificate /etc/ssl/certs/fullchain.pem;
ssl_certificate_key /etc/ssl/private/key.pem;
location / {
# Enforce OIDC authentication with Okta
auth_oidc okta;
# Pass OIDC claims as HTTP headers to the backend
proxy_set_header sub $oidc_claim_sub;
proxy_set_header email $oidc_claim_email;
proxy_set_header name $oidc_claim_name;
proxy_pass http://127.0.0.1:8080;
}
}
server {
# Simple backend listening on 8080
listen 8080;
location / {
return 200 "Hello, $http_name!\nEmail: $http_email\nSub: $http_sub\n";
default_type text/plain;
}
}
}
Testing
-
Open
https://demo.example.com/
in a browser. You will be automatically redirected to the Okta sign-in page. -
Enter valid Okta credentials of a user who has access the application. Upon successful sign-in, Okta redirects you back to NGINX Plus, and you will see the proxied application content (for example, “Hello, Jane Doe!”).
If you restricted access to a group of users, be sure to select a user who has access to the application.
Legacy njs-based Okta Solution
If you are running NGINX Plus R33 and earlier or if you still need the njs-based solution, refer to the Legacy njs-based Okta Guide for details. The solution uses the nginx-openid-connect
GitHub repository and NGINX JavaScript files.
See Also
Revision History
- Version 1 (March 2025) – Initial version (NGINX Plus Release 34)