forked from ubccr/mokey
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mokey.yaml.sample
239 lines (202 loc) · 9.94 KB
/
mokey.yaml.sample
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
---
#------------------------------------------------------------------------------
# Database connection
#------------------------------------------------------------------------------
dsn: "user:pass@/dbname?parseTime=true"
#------------------------------------------------------------------------------
# Database driver
#------------------------------------------------------------------------------
driver: "mysql"
#------------------------------------------------------------------------------
# Secure webserver port to listen on
#------------------------------------------------------------------------------
port: 8080
#------------------------------------------------------------------------------
# Insecure redirect host and port. If set will redirect http to https
#------------------------------------------------------------------------------
# insecure_redirect_port: 80
# insecure_redirect_host: localhost
#------------------------------------------------------------------------------
# Webserver interface to listen on
#------------------------------------------------------------------------------
# For utilizing all available IP interfaces, use:
# bind: "0.0.0.0"
# For localhost only, use:
bind: "127.0.0.1"
#------------------------------------------------------------------------------
# SSL certificate
#------------------------------------------------------------------------------
# cert: "/path/to/cert"
#------------------------------------------------------------------------------
# SSL private key
#-------------------------------------------------------------------
# key: "/path/to/key"
#------------------------------------------------------------------------------
# Password requirements
#------------------------------------------------------------------------------
# min_passwd_len: 8
# min_passwd_classes: 2
#------------------------------------------------------------------------------
# Authentication key used for HMAC token signing and secure cookies
#------------------------------------------------------------------------------
auth_key: mysecret
#------------------------------------------------------------------------------
# Encryption key used for encrypting cookies
#------------------------------------------------------------------------------
enc_key: mysecret
#------------------------------------------------------------------------------
# Templates directory
#------------------------------------------------------------------------------
templates: /usr/share/mokey/templates
#------------------------------------------------------------------------------
# Custom URL context path
#------------------------------------------------------------------------------
# path_prefix: "/mokey"
#------------------------------------------------------------------------------
# FreeIPA server hostname (defaults to /etc/ipa/default.conf)
#------------------------------------------------------------------------------
# ipahost: "ipa.example.edu"
#------------------------------------------------------------------------------
# Keytab file and username for mokey to user for operations requiring elevated
# privileges (should have "Modify users and Reset passwords" privilege in
# FreeIPA)
#------------------------------------------------------------------------------
keytab: "/path/to/client.keytab"
ktuser: "username"
#------------------------------------------------------------------------------
# Enable rate limiting based on remote ip (requires redis)
#------------------------------------------------------------------------------
rate_limit: false
#------------------------------------------------------------------------------
# Redis server (used for rate limiting)
#------------------------------------------------------------------------------
# redis: ":6379"
#------------------------------------------------------------------------------
# Max POST requests. This value sets a max limit on the number of POST requests
# made in a given time period. The time is defined by "rate_limit_expire".
#------------------------------------------------------------------------------
# max_requests: 15
#------------------------------------------------------------------------------
# The expire time in seconds for the max_requests counter. By default the
# number of post requests from a given IP address is limited to 15 requests per
# hour.
#------------------------------------------------------------------------------
# rate_limit_expire: 3600
#------------------------------------------------------------------------------
# SMTP server
#------------------------------------------------------------------------------
smtp_host: "localhost"
#smtp_username: "username"
#smtp_password: "password"
#------------------------------------------------------------------------------
# SMTP port / TLS
# Possible values for TLS are:
# - on: Connection is fully encrypted with TLS
# - off: Connection is unencrypted
# - starttls: Connections is encrypted on demand via the STARTTLS command
#------------------------------------------------------------------------------
smtp_port: 25
smtp_tls: "off"
#------------------------------------------------------------------------------
# From address used when sending emails
#------------------------------------------------------------------------------
email_from: "helpdesk@example.edu"
#------------------------------------------------------------------------------
# Email signature used when sending emails
#------------------------------------------------------------------------------
email_sig: "Mr. System Administrator"
#------------------------------------------------------------------------------
# Base URL of mokey server. Used for links in emails
#------------------------------------------------------------------------------
email_link_base: "http://localhost:8080"
#------------------------------------------------------------------------------
# Subject prefix used when sending emails
#------------------------------------------------------------------------------
email_prefix: "mokey"
#------------------------------------------------------------------------------
# Max age (in seconds) of setup account email tokens.
#------------------------------------------------------------------------------
setup_max_age: 86400
#------------------------------------------------------------------------------
# Max age (in seconds) of reset password email tokens.
#------------------------------------------------------------------------------
reset_max_age: 3600
#------------------------------------------------------------------------------
# Max attempts for password resets and account setup.
#------------------------------------------------------------------------------
max_attempts: 10
#------------------------------------------------------------------------------
# Sign emails using PGP/Mime
#------------------------------------------------------------------------------
pgp_sign: false
#------------------------------------------------------------------------------
# PGP private key
#------------------------------------------------------------------------------
# pgp_key: "/path/to/key.gpg"
#------------------------------------------------------------------------------
# passphrase for PGP private key (if encrypted)
#------------------------------------------------------------------------------
# pgp_passphrase: "secret"
#------------------------------------------------------------------------------
# CAPTCHA support
#------------------------------------------------------------------------------
# enable_captcha: true
#------------------------------------------------------------------------------
# New User Account Signup
#------------------------------------------------------------------------------
# enable_user_signup: true
# default_shell: "/bin/bash"
# default_homedir: "/home"
#
#------------------------------------------------------------------------------
# Require FreeIPA admin to activate the account. With this option enabled new
# accounts are disabled by default until a FreeIPA admin activates them.
# This option is mutually exclusive with require_verify_email.
#------------------------------------------------------------------------------
# require_verify_admin: false
#------------------------------------------------------------------------------
# Require users to verify email address. With this option enabled new accounts
# are disabled by default until the user verifies their email address
# This option is mutually exclusive with require_verify_admin.
#------------------------------------------------------------------------------
# require_verify_email: false
#------------------------------------------------------------------------------
# Developer mode
#------------------------------------------------------------------------------
develop: false
#------------------------------------------------------------------------------
# Globus Signup
#------------------------------------------------------------------------------
# globus_signup: false
# globus_iss: "https://auth.globus.org"
# globus_client_id: "xxx"
# globus_secret: "xxx"
# globus_trusted_providers:
# - xxx
# - xxx
#------------------------------------------------------------------------------
# Hydra config
#------------------------------------------------------------------------------
# hydra_admin_url: "https://localhost:4445"
# hydra_consent_skip: false
# hydra_consent_timeout: 86400
# hydra_login_timeout: 86400
# hydra_fake_tls_termination: true
#------------------------------------------------------------------------------
# Public oauth2 clients for Api Key access (requires Hydra)
#------------------------------------------------------------------------------
# enable_api_keys: false
# enabled_api_client_ids:
# - openstack-api
# - mypublic-api
#
# openstack-api:
# name: "Openstack CLI"
# desc: "Access to Openstack CLI"
# scopes: openid
#
# mypublic-api:
# name: "Some other API"
# desc: "Access to some other API"
# scopes: openid
...