mirror of
https://github.com/pushbits/server.git
synced 2025-07-31 23:29:08 +02:00
Add support for configuration of TLS
This commit is contained in:
parent
833e666c37
commit
61d5e04ecf
8 changed files with 65 additions and 12 deletions
|
@ -3,5 +3,8 @@ package pberrors
|
|||
|
||||
import "errors"
|
||||
|
||||
// ErrorMessageNotFound indicates that a message does not exist
|
||||
var ErrorMessageNotFound = errors.New("message not found")
|
||||
// ErrMessageNotFound indicates that a message does not exist
|
||||
var ErrMessageNotFound = errors.New("message not found")
|
||||
|
||||
// ErrConfigTLSFilesInconsistent indicates that either just a certfile or a keyfile was provided
|
||||
var ErrConfigTLSFilesInconsistent = errors.New("TLS certfile and keyfile must either both be provided or omitted")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue