diff options
| author | Horus3 | 2014-09-19 19:07:37 +0200 |
|---|---|---|
| committer | Horus3 | 2014-09-19 19:07:37 +0200 |
| commit | 2e3b69609088e37f5a716cfc8ad752f5ff0e7a90 (patch) | |
| tree | a3ab754789f5647e2b5205f9c37d4a26b71c8240 /public_html/vfs_config.php | |
| parent | 7a5041413611d93ea170080d24dcc39a4d44bd35 (diff) | |
| download | vfs-2e3b69609088e37f5a716cfc8ad752f5ff0e7a90.tar.gz | |
class vfsuser
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'); |
