summaryrefslogtreecommitdiff
path: root/server/mfad.py
Commit message (Collapse)AuthorAgeFilesLines
* Added option to specify TLS ciphersSam Chudnick2022-07-041-13/+37
| | | | | | Added a command line argument and config file option to set the TLS ciphers that the server will use. Set to Mozilla intermediate compatibility by default.
* Added options for certificate and key filesSam Chudnick2022-07-041-14/+26
| | | | | Added command line arguments and config file options to specify TLS certificate and TLS private key files.
* Implemented TLS encrypted connectionsSam Chudnick2022-07-041-12/+26
| | | | | | Implemented TLS encrypted connections. Added command line argument and configuration file option to accept invalid (self-signed) certificates. Fixed a couple of unrelated issues.
* Fixed issue caused by non-static database locationSam Chudnick2022-07-031-25/+34
| | | | | Pass database location as argument where needed now that location is not static.
* Read options from config fileSam Chudnick2022-07-021-9/+64
| | | | | | | Set a standardized configuration file location and read options from there. Allow for specifiying alternate location on command line. Options can still be specified on the command line, and any command line options take priority over those given in the configuration file.
* Added support for TOTPSam Chudnick2022-06-301-51/+69
| | | | | | Added TOTP as an MFA option. Also made a couple of of minor changes. Changed all database connections to use with statement. Read some options from a config file.
* Initial commitSam Chudnick2022-06-271-0/+246