modified connection settings in init.php

This commit is contained in:
2026-04-19 12:32:08 +02:00
parent 250ca9909d
commit bfc21d8fb6
2 changed files with 6 additions and 8 deletions

View File

@@ -17,7 +17,7 @@ if (file_exists($envFile)) {
// Defines Environment Variables
$host = getenv('POSTGRES_HOSTNAME');
$port = 5432;
$port = getenv('POSTGRES_PORT');
$db = getenv('POSTGRES_DB');
$user = getenv('POSTGRES_USER');
$pass = getenv('POSTGRES_PASSWORD');