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
+9-13
Original file line number
Diff line number
Diff line change
@@ -63,7 +63,7 @@ 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`, `spanner`, `couchbase`, or `hybrid`; default to `sql`).
66
+
-`CN_PERSISTENCE_TYPE`: Persistence backend being used (one of `sql`, `couchbase`, 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
68
-`CN_COUCHBASE_URL`: Address of Couchbase server (default to `localhost`).
69
69
-`CN_COUCHBASE_USER`: Username of Couchbase server (default to `admin`).
@@ -81,12 +81,8 @@ The following environment variables are supported by the container:
81
81
-`CN_SQL_DB_PORT`: Port of SQL backend (default to `3306`).
82
82
-`CN_SQL_DB_NAME`: Database name (default to `jans`)
83
83
-`CN_SQL_DB_USER`: Username to interact with SQL backend (default to `jans`).
84
-
-`CN_GOOGLE_SPANNER_INSTANCE_ID`: Instance ID of Google Spanner (default to empty string).
85
-
-`CN_GOOGLE_SPANNER_DATABASE_ID`: Database ID of Google Spanner (default to empty string).
86
84
-`GOOGLE_PROJECT_ID`: Google Project ID (default to empty string).
87
85
-`GOOGLE_PROJECT_ID`: Google Project ID (default to empty string). Used when `CN_CONFIG_ADAPTER` or `CN_SECRET_ADAPTER` set to `google`.
88
-
-`CN_GOOGLE_SPANNER_INSTANCE_ID`: Google Spanner instance ID.
89
-
-`CN_GOOGLE_SPANNER_DATABASE_ID`: Google Spanner database ID.
90
86
-`GLUU_ADMIN_UI_AUTH_METHOD`: Authentication method for admin-ui (default to `basic`). Note, changing the value require restart to jans-config-api.
91
87
92
88
### Hybrid mapping
@@ -99,12 +95,12 @@ Hybrid persistence supports all available persistence types. To configure hybrid
99
95
100
96
```
101
97
{
102
-
"default": "<couchbase|spanner|sql>",
103
-
"user": "<couchbase|spanner|sql>",
104
-
"site": "<couchbase|spanner|sql>",
105
-
"cache": "<couchbase|spanner|sql>",
106
-
"token": "<couchbase|spanner|sql>",
107
-
"session": "<couchbase|spanner|sql>",
98
+
"default": "<couchbase|sql>",
99
+
"user": "<couchbase|sql>",
100
+
"site": "<couchbase|sql>",
101
+
"cache": "<couchbase|sql>",
102
+
"token": "<couchbase|sql>",
103
+
"session": "<couchbase|sql>",
108
104
}
109
105
```
110
106
@@ -113,10 +109,10 @@ Hybrid persistence supports all available persistence types. To configure hybrid
0 commit comments