diff --git a/docs/documentation/platform/sso/general-oidc.mdx b/docs/documentation/platform/sso/general-oidc.mdx
new file mode 100644
index 000000000..e9a444811
--- /dev/null
+++ b/docs/documentation/platform/sso/general-oidc.mdx
@@ -0,0 +1,63 @@
+---
+title: "General OIDC"
+description: "Learn how to configure OIDC for Infisical SSO with any OIDC-compliant identity provider"
+---
+
+
+ OIDC SSO is a paid feature. If you're using Infisical Cloud, then it is
+ available under the **Pro Tier**. If you're self-hosting Infisical, then you
+ should contact sales@infisical.com to purchase an enterprise license to use
+ it.
+
+
+You can configure your organization in Infisical to have members authenticate with the platform through identity providers via [OpenID Connect](https://openid.net/specs/openid-connect-core-1_0.html).
+
+**Prerequisites:**
+
+- The identity provider (Okta, Google, Azure AD, etc.) should support OIDC.
+- Users in the IdP should have a configured email and given_name.
+
+
+
+ 1.1. Register your application with the IdP to obtain a **Client ID** and **Client Secret**. These credentials are used by Infisical to authenticate with your IdP.
+
+ 1.2. Configure **Redirect URL** to be `https://app.infisical.com/api/v1/sso/oidc/callback`. If you're self-hosting Infisical, replace the domain with your own.
+
+ 1.3. Configure the scopes needed by Infisical (email, profile, openid) and ensure that they are mapped to the ID token claims.
+
+ 1.4. Access the IdP’s OIDC discovery document (usually located at `https:///.well-known/openid-configuration`). This document contains important endpoints such as authorization, token, userinfo, and keys.
+
+
+ 2.1. Back in Infisical, in the Organization settings > Security > OIDC, click Manage
+ 
+
+ 2.2. You can configure OIDC either through the Discovery URL (Recommended) or by inputting custom endpoints.
+ - If you want to configure via Discovery URL, you will have to use the URL with the following format: `https:///.well-known/openid-configuration` as input for the **Discovery Document URL** field.
+ 
+
+ - If you want to configure via the Custom option, you will have to define values for all the required endpoints.
+ 
+
+ 2.3. Optionally, you can define a whitelist of allowed email domains.
+
+ Fill up the **Client ID** and **Client Secret** fields and press **Update** to complete the required configuration.
+
+
+
+
+ Enabling OIDC SSO allows members in your organization to log into Infisical via the configured Identity Provider
+
+ 
+
+
+
+
+
+
+ If you're configuring OIDC SSO on a self-hosted instance of Infisical, make
+ sure to set the `AUTH_SECRET` and `SITE_URL` environment variable for it to
+ work: - `AUTH_SECRET`: A secret key used for signing and verifying JWT. This
+ can be a random 32-byte base64 string generated with `openssl rand -base64
+ 32`. - `SITE_URL`: The URL of your self-hosted instance of Infisical - should
+ be an absolute URL including the protocol (e.g. https://app.infisical.com)
+
diff --git a/docs/documentation/platform/sso/overview.mdx b/docs/documentation/platform/sso/overview.mdx
index 30a3547c8..2fde59ea6 100644
--- a/docs/documentation/platform/sso/overview.mdx
+++ b/docs/documentation/platform/sso/overview.mdx
@@ -33,6 +33,7 @@ Infisical supports these and many other identity providers:
- [Google SAML](/documentation/platform/sso/google-saml)
- [Keycloak OIDC](/documentation/platform/sso/keycloak-oidc)
- [Auth0 OIDC](/documentation/platform/sso/auth0-oidc)
+- [General OIDC](/documentation/platform/sso/general-oidc)
If your required identity provider is not shown in the list above, please reach out to [team@infisical.com](mailto:team@infisical.com) for assistance.
diff --git a/docs/images/sso/general-oidc/custom-oidc-form.png b/docs/images/sso/general-oidc/custom-oidc-form.png
new file mode 100644
index 000000000..2aee02680
Binary files /dev/null and b/docs/images/sso/general-oidc/custom-oidc-form.png differ
diff --git a/docs/images/sso/general-oidc/discovery-oidc-form.png b/docs/images/sso/general-oidc/discovery-oidc-form.png
new file mode 100644
index 000000000..ae99b35b2
Binary files /dev/null and b/docs/images/sso/general-oidc/discovery-oidc-form.png differ
diff --git a/docs/images/sso/general-oidc/org-oidc-enable.png b/docs/images/sso/general-oidc/org-oidc-enable.png
new file mode 100644
index 000000000..69f0062bc
Binary files /dev/null and b/docs/images/sso/general-oidc/org-oidc-enable.png differ
diff --git a/docs/images/sso/general-oidc/org-oidc-manage.png b/docs/images/sso/general-oidc/org-oidc-manage.png
new file mode 100644
index 000000000..69a60f0f5
Binary files /dev/null and b/docs/images/sso/general-oidc/org-oidc-manage.png differ
diff --git a/docs/mint.json b/docs/mint.json
index c69561206..3a2989065 100644
--- a/docs/mint.json
+++ b/docs/mint.json
@@ -180,7 +180,8 @@
"documentation/platform/sso/keycloak-saml",
"documentation/platform/sso/google-saml",
"documentation/platform/sso/keycloak-oidc",
- "documentation/platform/sso/auth0-oidc"
+ "documentation/platform/sso/auth0-oidc",
+ "documentation/platform/sso/general-oidc"
]
},
{