diff options
author | Alex Vitkov <alexvitkov98@gmail.com> | 2021-02-15 09:58:55 +0200 |
---|---|---|
committer | Alex Vitkov <alexvitkov98@gmail.com> | 2021-02-15 09:58:55 +0200 |
commit | 8c55fc44a64f46d64ced2f053d8b441247cc1f36 (patch) | |
tree | c14165fe4cf112bdb3406d78cca61969f514839b | |
parent | 168f33ac6b99baa75f8b0c1caf7d6cd280408e9b (diff) | |
download | fileup-8c55fc44a64f46d64ced2f053d8b441247cc1f36.tar.gz |
configuration
-rw-r--r-- | php/.gitignore | 1 | ||||
-rw-r--r-- | php/configuration.php | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/php/.gitignore b/php/.gitignore new file mode 100644 index 0000000..f980a0f --- /dev/null +++ b/php/.gitignore @@ -0,0 +1 @@ +custom_configuration.php diff --git a/php/configuration.php b/php/configuration.php index 1f2f423..6cfef48 100644 --- a/php/configuration.php +++ b/php/configuration.php @@ -23,6 +23,6 @@ $password_hash_algo=PASSWORD_BCRYPT; $has_email_verification=false; -@include_once("$_SERVER[HOME]/.fileup.config.php"); +@include_once("custom_configuration.php"); -?>
\ No newline at end of file +?> |