diff options
| author | Sam Chudnick <sam@chudnick.com> | 2022-07-04 20:14:55 -0400 |
|---|---|---|
| committer | Sam Chudnick <sam@chudnick.com> | 2022-07-04 20:14:55 -0400 |
| commit | f77ae63daeba678612b11a274c92c5687cc3de5f (patch) | |
| tree | 11fac0f7cdf22b1bc766e7b198a2290569b0ddc1 | |
| parent | 2e840e7c381f88425952c6fa9d68e0d433084a5a (diff) | |
Created sample configuration file
| -rw-r--r-- | mfa.conf | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/mfa.conf b/mfa.conf new file mode 100644 index 0000000..7773388 --- /dev/null +++ b/mfa.conf | |||
| @@ -0,0 +1,23 @@ | |||
| 1 | # Sample configuration file | ||
| 2 | |||
| 3 | [mfad] | ||
| 4 | address = 127.0.0.1 | ||
| 5 | pam-port = 8000 | ||
| 6 | client-port = 8001 | ||
| 7 | pam-tls-port = 8100 | ||
| 8 | client-tls-port = 8101 | ||
| 9 | database = /etc/mfa/mfa.db | ||
| 10 | cert = /etc/mfa/tls/cert.pem | ||
| 11 | key = /etc/mfa/tls/key.pem | ||
| 12 | |||
| 13 | [client] | ||
| 14 | server = 127.0.0.1 | ||
| 15 | port = 8101 | ||
| 16 | insecure = True | ||
| 17 | plain = False | ||
| 18 | |||
| 19 | [pam] | ||
| 20 | server = 127.0.0.1 | ||
| 21 | port = 8100 | ||
| 22 | insecure = True | ||
| 23 | plain = False | ||
