Should be port 5432 (#6662)

This commit is contained in:
nikitasol 2020-06-15 14:32:43 +02:00 committed by GitHub
parent a2e3b4a5e5
commit cd955786bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -176,7 +176,7 @@ module.exports = ({ env }) => ({
settings: {
client: 'postgres',
host: env('DATABASE_HOST', '127.0.0.1'),
port: env.int('DATABASE_PORT', 27017),
port: env.int('DATABASE_PORT', 5432),
database: env('DATABASE_NAME', 'strapi'),
username: env('DATABASE_USERNAME', ''),
password: env('DATABASE_PASSWORD', ''),