-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathauthserver.yaml
46 lines (40 loc) · 994 Bytes
/
authserver.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Authserver authentication daemon settings
#
logger:
level: debug
filename: /dev/stdout
# The address to listen on for Admin UI
webadmin:
logger:
level: debug
filename: /dev/stdout
listen: 0.0.0.0:2113
ipacl: 0.0.0.0/0
# The address to listen on for GRPC requests coming from Envoy
envoyauth:
listen: 0.0.0.0:4000
# public endpoint for oauth requests
oauth:
logger:
level: debug
filename: /dev/stdout
listen: 0.0.0.0:4001
tokenissuepath: /oauth2/token
tokeninfopath: /oauth2/info
database:
hostname: cassandra
port: 9042
tls:
enable: false
username: cassandra
password: password
keyspace: gatekeeper
timeout: 30s
connectattempts: 20 # Will try up to 20 times to connect before giving up. This will allow Cassandra to start up.
queryretries: 0
cache:
size: 50000 # cache size in bytes
ttl: 60 # cache ttl for positive hits
negativettl: 15 # cache ttl for failed lookups
geoip:
database: ""