24 lines
775 B
Plaintext
24 lines
775 B
Plaintext
<?php
|
|
$g_hostname = '${DB_HOST_NAME}';
|
|
$g_db_type = 'pgsql';
|
|
$g_database_name = '${DB_NAME}';
|
|
$g_db_username = '${DB_USER}';
|
|
$g_db_password = '${DB_PASSWORD}';
|
|
|
|
|
|
$g_default_timezone = 'Europe/Paris';
|
|
|
|
$g_crypto_master_salt = 'SJtcO5PYJj9Y4E2RvyEiKEi1NG3pa5KUfLeA/3/hC/0=';
|
|
|
|
$g_path = '${WA_APPL_URL}';
|
|
|
|
# --- Anonymous Access / Signup ---
|
|
$g_allow_signup = OFF;
|
|
$g_allow_anonymous_login = OFF;
|
|
$g_anonymous_account = '';
|
|
|
|
# --- Branding ---
|
|
$g_window_title = '${WA_WINDOW_TITLE}';
|
|
$g_logo_image = '${WA_LOGO_IMG}';
|
|
$g_favicon_image = 'images/favicon.ico';
|