diff options
author | adam <adam@> | 2021-01-28 18:16:41 +0200 |
---|---|---|
committer | adam <adam@> | 2021-01-28 18:16:41 +0200 |
commit | 9cab0d0ed64f4e5289a0c979cae10a92508c391b (patch) | |
tree | 49fafe0e0067b7aa394a08556bda611bfdfe4c58 /php/configuration.php | |
parent | ceedd596c9f39f53555fd0746a42d6b85cd49b6c (diff) | |
download | fileup-9cab0d0ed64f4e5289a0c979cae10a92508c391b.tar.gz |
initial registering stuff
Diffstat (limited to 'php/configuration.php')
-rw-r--r-- | php/configuration.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/php/configuration.php b/php/configuration.php new file mode 100644 index 0000000..6b87508 --- /dev/null +++ b/php/configuration.php @@ -0,0 +1,17 @@ +<?php +/*should be placed outside of document root*/ + +$domain_name="localhost"; + +$database_name="adam"; +$database_username="adam"; +$database_password="asdfd"; +$database_location="127.0.0.1"; + + + +$password_hash_algo=PASSWORD_BCRYPT; + + +$has_email_verification=false; +?> |