You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/components/FAQ.astro
+14-2Lines changed: 14 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,11 @@ const faqs = [
14
14
},
15
15
{
16
16
question: "Is my database connection secure?",
17
-
answer: "Security is our top priority. All connections support TLS/SSL encryption and SSH Tunnel for accessing databases behind firewalls. Credentials are never stored in plain text. For self-hosted deployments, your data never leaves your network. We also support JWT authentication, role-based access control (RBAC), transaction control (BEGIN/COMMIT/ROLLBACK), and automatic data masking — sensitive columns like email, phone, SSN, and financial data are detected and masked across the grid, exports, and clipboard with configurable RBAC enforcement."
17
+
answer: "Security is our top priority. All connections support TLS/SSL encryption and SSH Tunnel for accessing databases behind firewalls. Credentials are never stored in plain text. For self-hosted deployments, your data never leaves your network. We support JWT authentication, OIDC Single Sign-On (Auth0, Keycloak, Okta, Azure AD), role-based access control (RBAC), transaction control (BEGIN/COMMIT/ROLLBACK), and automatic data masking — sensitive columns like email, phone, SSN, and financial data are detected and masked across the grid, exports, and clipboard with configurable RBAC enforcement."
18
+
},
19
+
{
20
+
question: "Does it support SSO / Single Sign-On?",
21
+
answer: "Yes! LibreDB Studio supports vendor-agnostic OpenID Connect (OIDC) authentication out of the box. Connect with Auth0, Keycloak, Okta, Azure AD, Google, or any OIDC-compliant identity provider. The integration uses Authorization Code Flow with PKCE for maximum security, supports configurable role mapping from provider claims, and handles both login and logout at the provider level. Just set three environment variables (issuer, client ID, client secret) and you're ready to go."
18
22
},
19
23
{
20
24
question: "Which databases are supported?",
@@ -149,7 +153,15 @@ const faqs = [
149
153
"name": "Is my database connection secure?",
150
154
"acceptedAnswer": {
151
155
"@type": "Answer",
152
-
"text": "Security is our top priority. All connections support TLS/SSL encryption and SSH Tunnel. Credentials are never stored in plain text. Built-in data masking auto-detects and protects sensitive columns across the UI and exports."
156
+
"text": "Security is our top priority. All connections support TLS/SSL encryption and SSH Tunnel. We support OIDC SSO (Auth0, Keycloak, Okta, Azure AD), JWT auth, RBAC, and automatic data masking across the UI and exports."
157
+
}
158
+
},
159
+
{
160
+
"@type": "Question",
161
+
"name": "Does it support SSO / Single Sign-On?",
162
+
"acceptedAnswer": {
163
+
"@type": "Answer",
164
+
"text": "Yes! LibreDB Studio supports vendor-agnostic OpenID Connect (OIDC) authentication with Auth0, Keycloak, Okta, Azure AD, Google, or any OIDC-compliant provider. Uses PKCE for security with configurable role mapping."
0 commit comments