My postgres cluster uses mTLS for authentication, which means I need to configure applications with certificates to be able to connect, but dashbrr hardcodes sslmode=false (https://github.com/autobrr/dashbrr/blob/develop/internal/database/database.go#L204). Ideally I'd like to be able to specify a standard postgres URI like in autobrr.
My postgres cluster uses mTLS for authentication, which means I need to configure applications with certificates to be able to connect, but dashbrr hardcodes
sslmode=false(https://github.com/autobrr/dashbrr/blob/develop/internal/database/database.go#L204). Ideally I'd like to be able to specify a standard postgres URI like in autobrr.