Centralize database configuration for _website folder
Co-authored-by: iaretechnician <2749183+iaretechnician@users.noreply.github.com>
This commit is contained in:
parent
b52f1960f6
commit
490b35c556
3 changed files with 52 additions and 4 deletions
16
_website/includes/config.inc.php
Normal file
16
_website/includes/config.inc.php
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
###############################################
|
||||
# Website Database Configuration
|
||||
# This file contains the database connection
|
||||
# settings for the _website standalone site.
|
||||
#
|
||||
# These settings should match the panel's
|
||||
# database configuration in includes/config.inc.php
|
||||
###############################################
|
||||
$db_host="localhost";
|
||||
$db_user="localuser";
|
||||
$db_pass="Pkloyn7yvpht!";
|
||||
$db_name="panel";
|
||||
$table_prefix="ogp_";
|
||||
$db_type="mysql";
|
||||
?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue