JuliusBrussee/caveman · error
postgres: production DATABASE_URL requires sslmode=verify-fu
Error message
postgres: production DATABASE_URL requires sslmode=verify-full
What it means
Error "postgres: production DATABASE_URL requires sslmode=verify-full" thrown in JuliusBrussee/caveman.
Source
Thrown at shared/platform/postgresconfig/postgresconfig.go:37
)
const (
caEnvironment = "CAVE_POSTGRES_CA_CERT"
caFileEnvironment = "CAVE_POSTGRES_CA_CERT_FILE"
)
// ParsePoolConfig validates the connection string and applies the managed
// database CA to every TLS path. Production rejects sslmode=require because it
// encrypts without authenticating the server; verify-full is mandatory.
func ParsePoolConfig(databaseURL string) (*pgxpool.Config, error) {
production := runtimeenv.IsProduction()
if production {
parsed, err := url.Parse(databaseURL)
if err != nil || (parsed.Scheme != "postgres" && parsed.Scheme != "postgresql") || parsed.Hostname() == "" {
return nil, errors.New("postgres: production DATABASE_URL must be a Postgres URL")
}
if parsed.Query().Get("sslmode") != "verify-full" {
return nil, errors.New("postgres: production DATABASE_URL requires sslmode=verify-full")
}
}
config, err := pgxpool.ParseConfig(databaseURL)
if err != nil {
return nil, fmt.Errorf("postgres: parse DATABASE_URL: %w", err)
}
caPEM, err := caPEMFromEnvironment()
if err != nil {
return nil, err
}
if production && caPEM == "" {
return nil, fmt.Errorf("postgres: %s or %s is required in production", caEnvironment, caFileEnvironment)
}
if caPEM == "" {
return config, nil
}
roots := x509.NewCertPool()View on GitHub (pinned to 27d5a3981a)
Solutions
- Use sslmode=verify-full on the production DATABASE_URL.
When it happens
Trigger: Thrown at shared/platform/postgresconfig/postgresconfig.go:37 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of JuliusBrussee/caveman@27d5a3981a (2026-08-15).
Data as JSON: /api/errors/be48325390daf511.
Report an issue: GitHub.