diff options
Diffstat (limited to 'public_html/vfs_config.php')
| -rw-r--r-- | public_html/vfs_config.php | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/public_html/vfs_config.php b/public_html/vfs_config.php index a24fdd1..b1f4e4b 100644 --- a/public_html/vfs_config.php +++ b/public_html/vfs_config.php @@ -1,6 +1,6 @@ <?php -# mysql access +### mysql access define('DBHOST', 'localhost'); define('DBUSER', 'vfs-user'); define('DBNAME', 'vfs'); @@ -8,16 +8,23 @@ define('DBPASSWORD', 'secretpassword'); define('DBCHARSET', 'utf8'); define('DBPREFIX', 'vfs_'); -# absolute path +### define your pepper for password security +define('PEPPER_IS_FILE', false); +define('PEPPER', 'somelongstringhere'); + +# define('PEPPER_IS_FILE', true); +# define('PEPPER', dirname(__FILE__) . '/../pepper.txt'); + +### absolute path # define('ABSPATH', dirname(__FILE__) . '/'); -# file directory +### file directory # define('FILEPATH', ABSPATH . '../files'); -# scheme, set to https if possible, otherwise plain http +### scheme, set to https if possible, otherwise plain http # define('SCHEME', 'http://'); # define('SCHEME', 'https://'); -# hostname +### hostname # define('HOST', 'files.iamfabulous.de'); # define('DOMAIN', 'https://files.iamfabulous.de'); |
