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: docker-admin-ui/README.md
+8-19
Original file line number
Diff line number
Diff line change
@@ -63,19 +63,8 @@ The following environment variables are supported by the container:
63
63
-`CN_TOKEN_SERVER_USERINFO_ENDPOINT`: User info endpoint at token server (default to `/jans-auth/restv1/userinfo`).
64
64
-`CN_TOKEN_SERVER_CLIENT_ID`: Client ID registered at token server.
65
65
-`CN_TOKEN_SERVER_CERT_FILE`: Path to token server certificate (default to `/etc/certs/token_server.crt`).
66
-
-`CN_PERSISTENCE_TYPE`: Persistence backend being used (one of `sql`, `couchbase`, or `hybrid`; default to `sql`).
66
+
-`CN_PERSISTENCE_TYPE`: Persistence backend being used (one of `sql` or `hybrid`; default to `sql`).
67
67
-`CN_HYBRID_MAPPING`: Specify data mapping for each persistence (default to `"{}"`). Note this environment only takes effect when `CN_PERSISTENCE_TYPE` is set to `hybrid`. See [hybrid mapping](#hybrid-mapping) section for details.
68
-
-`CN_COUCHBASE_URL`: Address of Couchbase server (default to `localhost`).
69
-
-`CN_COUCHBASE_USER`: Username of Couchbase server (default to `admin`).
70
-
-`CN_COUCHBASE_CERT_FILE`: Couchbase root certificate location (default to `/etc/certs/couchbase.crt`).
71
-
-`CN_COUCHBASE_PASSWORD_FILE`: Path to file contains Couchbase password (default to `/etc/jans/conf/couchbase_password`).
72
-
-`CN_COUCHBASE_CONN_TIMEOUT`: Connect timeout used when a bucket is opened (default to `10000` milliseconds).
73
-
-`CN_COUCHBASE_CONN_MAX_WAIT`: Maximum time to wait before retrying connection (default to `20000` milliseconds).
74
-
-`CN_COUCHBASE_SCAN_CONSISTENCY`: Default scan consistency; one of `not_bounded`, `request_plus`, or `statement_plus` (default to `not_bounded`).
75
-
-`CN_COUCHBASE_BUCKET_PREFIX`: Prefix for Couchbase buckets (default to `jans`).
76
-
-`CN_COUCHBASE_TRUSTSTORE_ENABLE`: Enable truststore for encrypted Couchbase connection (default to `true`).
77
-
-`CN_COUCHBASE_KEEPALIVE_INTERVAL`: Keep-alive interval for Couchbase connection (default to `30000` milliseconds).
78
-
-`CN_COUCHBASE_KEEPALIVE_TIMEOUT`: Keep-alive timeout for Couchbase connection (default to `2500` milliseconds).
79
68
-`CN_SQL_DB_DIALECT`: Dialect name of SQL backend (one of `mysql`, `pgsql`; default to `mysql`).
80
69
-`CN_SQL_DB_HOST`: Host of SQL backend (default to `localhost`).
81
70
-`CN_SQL_DB_PORT`: Port of SQL backend (default to `3306`).
@@ -95,12 +84,12 @@ Hybrid persistence supports all available persistence types. To configure hybrid
95
84
96
85
```
97
86
{
98
-
"default": "<couchbase|sql>",
99
-
"user": "<couchbase|sql>",
100
-
"site": "<couchbase|sql>",
101
-
"cache": "<couchbase|sql>",
102
-
"token": "<couchbase|sql>",
103
-
"session": "<couchbase|sql>",
87
+
"default": "<sql>",
88
+
"user": "<sql>",
89
+
"site": "<sql>",
90
+
"cache": "<sql>",
91
+
"token": "<sql>",
92
+
"session": "<sql>",
104
93
}
105
94
```
106
95
@@ -112,7 +101,7 @@ Hybrid persistence supports all available persistence types. To configure hybrid
0 commit comments