2016-10-14 21:28:57 +05:30
|
|
|
# The base path of dex and the external name of the OpenID Connect service.
|
2016-11-09 01:21:59 +05:30
|
|
|
# This is the canonical URL that all clients MUST use to refer to dex. If a
|
|
|
|
# path is provided, dex's HTTP service will listen at a non-root URL.
|
2016-10-14 21:28:57 +05:30
|
|
|
issuer: http://127.0.0.1:5556/dex
|
|
|
|
|
|
|
|
# The storage configuration determines where dex stores its state. Supported
|
|
|
|
# options include SQL flavors and Kubernetes third party resources.
|
2016-11-09 01:21:59 +05:30
|
|
|
#
|
|
|
|
# See the storage document at Documentation/storage.md for further information.
|
2016-08-05 22:20:22 +05:30
|
|
|
storage:
|
2016-10-04 01:16:49 +05:30
|
|
|
type: sqlite3
|
|
|
|
config:
|
|
|
|
file: examples/dex.db
|
2016-08-05 22:20:22 +05:30
|
|
|
|
2016-11-09 01:21:59 +05:30
|
|
|
# Configuration for the HTTP endpoints.
|
2016-08-05 22:20:22 +05:30
|
|
|
web:
|
2016-12-01 03:56:54 +05:30
|
|
|
http: 0.0.0.0:5556
|
2016-11-09 01:21:59 +05:30
|
|
|
# Uncomment for HTTPS options.
|
2016-10-14 21:28:57 +05:30
|
|
|
# https: 127.0.0.1:5554
|
|
|
|
# tlsCert: /etc/dex/tls.crt
|
|
|
|
# tlsKey: /etc/dex/tls.key
|
2016-08-05 22:20:22 +05:30
|
|
|
|
2016-11-09 01:21:59 +05:30
|
|
|
# Uncomment this block to enable the gRPC API. This values MUST be different
|
|
|
|
# from the HTTP endpoints.
|
2016-10-14 21:28:57 +05:30
|
|
|
# grpc:
|
|
|
|
# addr: 127.0.0.1:5557
|
2017-02-20 22:15:32 +05:30
|
|
|
# tlsCert: examples/grpc-client/server.crt
|
|
|
|
# tlsKey: examples/grpc-client/server.key
|
|
|
|
# tlsClientCA: /etc/dex/client.crt
|
2016-08-05 22:20:22 +05:30
|
|
|
|
2016-11-09 01:21:59 +05:30
|
|
|
# Uncomment this block to enable configuration for the expiration time durations.
|
|
|
|
# expiry:
|
|
|
|
# signingKeys: "6h"
|
|
|
|
# idTokens: "24h"
|
|
|
|
|
2016-12-16 03:17:37 +05:30
|
|
|
# Options for controlling the logger.
|
|
|
|
# logger:
|
|
|
|
# level: "debug"
|
|
|
|
# format: "text" # can also be "json"
|
|
|
|
|
2017-06-23 23:57:49 +05:30
|
|
|
# Uncomment this block to control which response types dex supports. For example
|
|
|
|
# the following response types enable the implicit flow for web-only clients.
|
|
|
|
# Defaults to ["code"], the code flow.
|
|
|
|
# oauth2:
|
|
|
|
# responseTypes: ["code", "token", "id_token"]
|
|
|
|
|
2016-10-06 05:20:02 +05:30
|
|
|
# Instead of reading from an external storage, use this list of clients.
|
2016-10-14 21:28:57 +05:30
|
|
|
#
|
2017-03-20 21:46:56 +05:30
|
|
|
# If this option isn't chosen clients may be added through the gRPC API.
|
2016-08-05 22:20:22 +05:30
|
|
|
staticClients:
|
|
|
|
- id: example-app
|
|
|
|
redirectURIs:
|
|
|
|
- 'http://127.0.0.1:5555/callback'
|
|
|
|
name: 'Example App'
|
|
|
|
secret: ZXhhbXBsZS1hcHAtc2VjcmV0
|
2016-10-06 05:20:02 +05:30
|
|
|
|
2016-10-14 21:28:57 +05:30
|
|
|
connectors:
|
|
|
|
- type: mockCallback
|
|
|
|
id: mock
|
|
|
|
name: Example
|
2016-10-23 02:06:31 +05:30
|
|
|
# - type: oidc
|
|
|
|
# id: google
|
|
|
|
# name: Google
|
|
|
|
# config:
|
|
|
|
# issuer: https://accounts.google.com
|
2016-11-09 01:21:59 +05:30
|
|
|
# # Connector config values starting with a "$" will read from the environment.
|
2016-10-23 02:06:31 +05:30
|
|
|
# clientID: $GOOGLE_CLIENT_ID
|
|
|
|
# clientSecret: $GOOGLE_CLIENT_SECRET
|
2016-11-21 23:55:16 +05:30
|
|
|
# redirectURI: http://127.0.0.1:5556/dex/callback
|
2017-06-21 11:31:35 +05:30
|
|
|
# hostedDomain: $GOOGLE_HOSTED_DOMAIN
|
2016-10-14 21:28:57 +05:30
|
|
|
|
2016-11-09 01:21:59 +05:30
|
|
|
# Let dex keep a list of passwords which can be used to login to dex.
|
2016-10-06 05:20:02 +05:30
|
|
|
enablePasswordDB: true
|
|
|
|
|
|
|
|
# A static list of passwords to login the end user. By identifying here, dex
|
2016-10-14 21:28:57 +05:30
|
|
|
# won't look in its underlying storage for passwords.
|
|
|
|
#
|
2017-03-20 21:46:56 +05:30
|
|
|
# If this option isn't chosen users may be added through the gRPC API.
|
2016-10-06 05:20:02 +05:30
|
|
|
staticPasswords:
|
|
|
|
- email: "admin@example.com"
|
|
|
|
# bcrypt hash of the string "password"
|
2016-11-04 09:38:50 +05:30
|
|
|
hash: "$2a$10$2b2cU8CPhOTaGrs1HRQuAueS7JTT5ZHsHSzYiFPm1leZck7Mc8T4W"
|
2016-10-06 05:20:02 +05:30
|
|
|
username: "admin"
|
|
|
|
userID: "08a8684b-db88-4b73-90a9-3cd1661f5466"
|