summaryrefslogtreecommitdiff
path: root/config.php.example
diff options
context:
space:
mode:
Diffstat (limited to 'config.php.example')
-rw-r--r--config.php.example16
1 files changed, 16 insertions, 0 deletions
diff --git a/config.php.example b/config.php.example
new file mode 100644
index 0000000..d74e4b5
--- /dev/null
+++ b/config.php.example
@@ -0,0 +1,16 @@
+<?php
+ #Blaupload Config
+ #Modify this file with your details and copy it to config.php
+
+ #The full URL used to access this directory
+ $url = "http://www.blaupload.co.uk";
+
+ #The SHA256 hash of the password used to access the folder
+ #Set to null if you don't want the folder to be password protected
+ $pass = "ENTER PASSWORD HASH HERE";
+
+ #A file to be shown at the top of the page
+ #For example, a HTML form to upload files
+ $headerfile = "upload.html"
+
+?>