Feature: Add optional tenant ID to isolate data in shared databases (#254)

This commit is contained in:
Ralph Slooten
2024-04-09 21:30:56 +12:00
parent 94b4618420
commit 6a410a28b6
21 changed files with 427 additions and 310 deletions

View File

@@ -41,7 +41,8 @@ settings to determine the HTTP bind interface & port.
IdleConnTimeout: time.Second * 5,
ExpectContinueTimeout: time.Second * 5,
TLSHandshakeTimeout: time.Second * 5,
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
// do not verify TLS in case this instance is using HTTPS
TLSClientConfig: &tls.Config{InsecureSkipVerify: true}, // #nosec
}
client := &http.Client{Transport: conf}