diff options
author | Gabriel A. Giovanini <mail@gabrielgio.me> | 2024-10-05 15:34:47 +0200 |
---|---|---|
committer | Gabriel A. Giovanini <mail@gabrielgio.me> | 2024-10-05 15:34:47 +0200 |
commit | 39f2578e79b6db426ad3dd5db4898bcc7820e44a (patch) | |
tree | ee2764126083be71c4814bee7d17cb2218157aed /pkg/config/config_test.go | |
parent | 5fb240326bba79f6963f5d042dea824cdb9e8e45 (diff) | |
download | cerrado-39f2578e79b6db426ad3dd5db4898bcc7820e44a.tar.gz cerrado-39f2578e79b6db426ad3dd5db4898bcc7820e44a.tar.bz2 cerrado-39f2578e79b6db426ad3dd5db4898bcc7820e44a.zip |
feat: Add hash and aes key to the config file
This should the base configuration for user. Bcrypt hash will be used to
authenticate and aes key will be used to generate the token.
Diffstat (limited to 'pkg/config/config_test.go')
-rw-r--r-- | pkg/config/config_test.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pkg/config/config_test.go b/pkg/config/config_test.go index 8c1d27e..0970cfa 100644 --- a/pkg/config/config_test.go +++ b/pkg/config/config_test.go @@ -103,6 +103,8 @@ repository /srv/git/cerrado.git { name: "complete", config: ` listen-addr unix://var/run/cerrado/cerrado.sock +passphrase $2a$14$VnB/ZcB1DUDkMnosRA6Y7.dj8h5eroslDxTeXlLwfQX/x86mh6WAq +aes-key 8XHptZxSWCGs1m7QzztX5zNQ7D9NiQevVX0DaUTNMbDpRwFzoJiB0U7K6O/kqIt01jJVgzBUfiR8ES46ZLLb4w== scan "/srv/git" { public true @@ -122,6 +124,8 @@ repository /srv/git/cerrado.git { Path: "/srv/git", }, ListenAddr: "unix://var/run/cerrado/cerrado.sock", + Passphrase: "$2a$14$VnB/ZcB1DUDkMnosRA6Y7.dj8h5eroslDxTeXlLwfQX/x86mh6WAq", + AESKey: "8XHptZxSWCGs1m7QzztX5zNQ7D9NiQevVX0DaUTNMbDpRwFzoJiB0U7K6O/kqIt01jJVgzBUfiR8ES46ZLLb4w==", Repositories: []*GitRepositoryConfiguration{ { Name: "linux.git", |