s11
parent
5da7710af1
commit
0d4323df9e
|
@ -6,10 +6,10 @@ const router = express.Router();
|
||||||
|
|
||||||
// Create MariaDB connection pool
|
// Create MariaDB connection pool
|
||||||
const pool = mariadb.createPool({
|
const pool = mariadb.createPool({
|
||||||
host: '172.17.0.1',
|
host: process.env.MARIA_HOST,
|
||||||
user: 'root',
|
user: process.env.MARIA_USER,
|
||||||
password: '0000',
|
password: process.env.MARIA_PASS,
|
||||||
database: 'game',
|
database: process.env.MARIA_DBNM,
|
||||||
connectionLimit: 5
|
connectionLimit: 5
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue