We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3c89d6 commit bd6e63fCopy full SHA for bd6e63f
content/features/6-ssl.mdx
@@ -59,3 +59,23 @@ const config = {
59
},
60
}
61
```
62
+
63
+## Note
64
+With Sequelize you may actually need to store the SSL information one level below the other connection information, under dialectOptions, like this:
65
66
+```js
67
+const config = {
68
+ username:,
69
+ password:,
70
+ database:,
71
+ host:,
72
+ dialect: "postgres",
73
+ dialectOptions: {
74
+ ssl: {
75
+ rejectUnauthorized: true,
76
+ ca: process.env.CA_CERT,
77
+ },
78
79
+ logging:
80
+}
81
+```
0 commit comments