mirror of
https://github.com/versia-pub/server.git
synced 2026-04-27 20:59:15 +02:00
feat: ✨ Allow specifying custom TLS certificate, key and CA
This commit is contained in:
parent
a37e8e92c5
commit
633e92d4e9
6 changed files with 63 additions and 20 deletions
|
|
@ -6,16 +6,16 @@ export default {
|
|||
out: "./drizzle",
|
||||
schema: "./drizzle/schema.ts",
|
||||
dbCredentials: {
|
||||
host: "localhost",
|
||||
/* host: "localhost",
|
||||
port: 40000,
|
||||
user: "lysand",
|
||||
password: "lysand",
|
||||
database: "lysand",
|
||||
/* host: config.database.host,
|
||||
database: "lysand", */
|
||||
host: config.database.host,
|
||||
port: Number(config.database.port),
|
||||
user: config.database.username,
|
||||
password: config.database.password,
|
||||
database: config.database.database, */
|
||||
database: config.database.database,
|
||||
},
|
||||
// Print all statements
|
||||
verbose: true,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue