Browse Source

Comments in configs

pull/40/head
Savetheinternet 14 years ago
parent
commit
0296a7666f
  1. 15
      inc/config.php
  2. 19
      inc/instance-config.php

15
inc/config.php

@ -1,4 +1,19 @@
<?php <?php
/*
* .d88888b d888888P .88888. 888888ba
* 88. "' 88 d8' `8b 88 `8b
* `Y88888b. 88 88 88 a88aaaa8P'
* `8b 88 88 88 88
* d8' .8P 88 Y8. .8P 88
* Y88888P dP `8888P' dP
*
* Do not edit this file. Edit instance-config instead!
*
* This is the default configuration. You can copy values from here and use them in
* your instance-config.php
*
*/
// Database stuff // Database stuff
define('MY_SERVER', 'localhost', true); define('MY_SERVER', 'localhost', true);

19
inc/instance-config.php

@ -0,0 +1,19 @@
<?php
/*
* Instance Configuration
* ----------------------
* Edit this file and not config.php for imageboard configuration.
*
* You can copy values from config.php (defaults) and paste them here.
*/
/*
define('MY_SERVER', 'localhost', true);
define('MY_USER', '', true);
define('MY_PASSWORD', '', true);
define('MY_DATABASE', '', true);
// define('FOO', 'bar');
*/
?>
Loading…
Cancel
Save