aboutsummaryrefslogtreecommitdiff
path: root/bootstrap/config.php
diff options
context:
space:
mode:
authorHorus32014-09-23 20:16:17 +0200
committerHorus32014-09-23 20:16:17 +0200
commit790524e3dee3ddcf5a8250adc8b38853d0014c9f (patch)
tree2965207a742727b3a10eb0b32dbca5c61b9ef372 /bootstrap/config.php
parent3c94eb3f608f9bf0dc8d19583abe273b3a67e5ff (diff)
downloadjungegemeinde-790524e3dee3ddcf5a8250adc8b38853d0014c9f.tar.gz
rebuild with bootstrap
Diffstat (limited to 'bootstrap/config.php')
-rw-r--r--bootstrap/config.php30
1 files changed, 30 insertions, 0 deletions
diff --git a/bootstrap/config.php b/bootstrap/config.php
new file mode 100644
index 0000000..5c66d07
--- /dev/null
+++ b/bootstrap/config.php
@@ -0,0 +1,30 @@
+<?php
+
+### mysql access
+define('DBHOST', 'localhost');
+define('DBUSER', 'vfs-user');
+define('DBNAME', 'vfs');
+define('DBPASSWORD', 'secretpassword');
+define('DBCHARSET', 'utf8');
+define('DBPREFIX', 'vfs_');
+
+### 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
+# define('FILEPATH', ABSPATH . '../files');
+
+### scheme, set to https if possible, otherwise plain http
+# define('SCHEME', 'http://');
+# define('SCHEME', 'https://');
+
+### hostname
+define('HOST', 'jungegemeinde.iamfabulous.de');
+define('DOMAIN', 'https://jungegemeinde.iamfabulous.de');